UNPKG

react-native-unit-components

Version:

Unit React Native components

17 lines 743 B
/// <reference types="react" /> import { UNAccount, UNComponentsOnLoadResponse } from '../../types/shared'; import { UNCheckPayment } from '../../types/shared/payment'; export interface UNCheckPaymentComponentProps { accountId?: string; theme?: string; language?: string; initialStageBackButton?: boolean; finalStageDoneButton?: boolean; onLoad?: (response: UNComponentsOnLoadResponse<[UNAccount]>) => void; onPaymentCreated?: (data: UNCheckPayment) => void; onInitialStageBackButtonClicked?: () => void; onFinalStageDoneButtonClicked?: () => void; } declare const _default: (props: UNCheckPaymentComponentProps) => JSX.Element; export default _default; //# sourceMappingURL=UNCheckPaymentComponent.d.ts.map