import { type KycStatusGlyph } from '../icons/KycStatusIcon'; import { type FiatKycOptionRowProps } from './FiatKycOptionRow'; export interface FiatKycOptionsScreenProps { /** The card's own glyph, which need not be the banner's. */ glyph: KycStatusGlyph; title: string; /** Heading over the routes, e.g. "Right now you can:". */ optionsLabel: string; options: FiatKycOptionRowProps[]; onBack: () => void; } /** * What the buyer can still do with a deposit identity is holding (Figma KYC * R2, 2387:13322, 2387:13488 and 2387:13602). * * Distinct from {@link FiatKycOutcomeScreen}, which reports the verdict as * soon as the form is submitted. This one is reached later, from the deposit * the buyer came back to. */ export declare function FiatKycOptionsScreen({ glyph, title, optionsLabel, options, onBack, }: FiatKycOptionsScreenProps): import("react").JSX.Element; //# sourceMappingURL=FiatKycOptionsScreen.d.ts.map