import * as React from 'react';

/**
 * FitNotice — from @kuppwest/apple-clean@0.1.0.
 */
export interface FitNoticeProps {
  /** Bold one-line title, e.g. "Bitte prüfen Sie vor dem Kauf Ihr Fahrzeug." */
  title: React.ReactNode;
  /** Muted explanatory copy; may contain an inline `TextLink variant="inline"`. */
  children: React.ReactNode;
}

export declare const FitNotice: React.ComponentType<FitNoticeProps>;
