import type { FiatFlow } from '@funkit/connect-core'; import type { FiatOtpScreenProps } from './FiatOtpScreen'; type OtpProps = Omit; interface Submission { props: OtpProps; code: string; } /** Hold the verified code briefly without delaying the server's next transition. */ export declare function useOtpReceipt(flow: FiatFlow): { bind: (props: OtpProps) => OtpProps; receipt: Submission | undefined; }; export {}; //# sourceMappingURL=useOtpReceipt.d.ts.map