UNPKG

react-native-unit-components

Version:

Unit React Native components

20 lines 871 B
/// <reference types="react" /> import type { UNCheckDepositData } from '../../types/shared/checkDeposit.types'; import type { UNAccountData, UNOnLoadResponse } from '../../types/shared'; export interface UNCheckDepositComponentProps { accountId: string; fee?: number; customerToken: string; theme?: string; language?: string; initialStageBackButton?: boolean; finalStageDoneButton?: boolean; onLoad?: (response: UNOnLoadResponse<UNAccountData>) => void; onDepositCreated?: (checkData: UNCheckDepositData) => void; onRestartRequest?: (checkData: UNCheckDepositData) => void; onInitialStageBackButtonClicked?: () => void; onFinalStageDoneButtonClicked?: () => void; } declare const _default: (props: UNCheckDepositComponentProps) => JSX.Element; export default _default; //# sourceMappingURL=UNCheckDepositComponent.d.ts.map