export interface FiatKycOutcomeScreenProps { outcome: 'review' | 'hold' | 'restricted'; /** * The verdict is withheld for now: the screen wears the hold's wording and * spins where its action goes. What was sent has landed, and the answer then * arrives on a screen the buyer is already reading. */ pending?: boolean; recovery?: { label: string; onPress: () => void; }; retryDetail?: string; onContinue: () => void; } /** * The acknowledgement as the flow shows it, wait and all. * * - The wait starts here, on mount, so it is the screen's own: the verdict is * often decided while another screen still owns the frame. */ export declare function FiatKycCompletion(props: Omit): import("react").JSX.Element; export declare function FiatKycOutcomeScreen({ outcome, pending, recovery, retryDetail, onContinue, }: FiatKycOutcomeScreenProps): import("react").JSX.Element; //# sourceMappingURL=FiatKycOutcomeScreen.d.ts.map