export type FiatStatusTone = 'waiting' | 'success' | 'failure' | 'notice'; export interface FiatStatusScreenProps { tone: FiatStatusTone; title: string; detail?: string; /** The state's recovery CTA, when its step response carries one. */ cta?: { label: string; onPress: () => void; }; secondaryCta?: { label: string; onPress: () => void; }; isSubmitting?: boolean; onClose?: () => void; } /** * Every in-place fiat status: verifying, processing, terminal outcomes. One * screen because the design keeps the whole Apple Pay flow on one canvas — * these render where the entry was, not as navigations away from it. */ export declare function FiatStatusScreen({ tone, title, detail, cta, secondaryCta, isSubmitting, onClose, }: FiatStatusScreenProps): import("react").JSX.Element; //# sourceMappingURL=FiatStatusScreen.d.ts.map