UNPKG

react-native-unit-components

Version:

Unit React Native components

21 lines 845 B
/// <reference types="react" /> import type { UNOnLoadResponse, UNBookPaymentData, UNAccountData } from '../../types/shared'; export interface UNBookPaymentComponentProps { accountId?: string; customerToken: string; theme?: string; language?: string; isAutoFocus?: boolean; isSameCustomer?: boolean; counterPartyAccountId?: string; counterPartyName?: string; initialStageBackButton?: boolean; finalStageDoneButton?: boolean; onPaymentCreated?: (data: UNBookPaymentData) => void; onLoad?: (response: UNOnLoadResponse<[UNAccountData]>) => void; onInitialStageBackButtonClicked?: () => void; onFinalStageDoneButtonClicked?: () => void; } declare const _default: (props: UNBookPaymentComponentProps) => JSX.Element; export default _default; //# sourceMappingURL=UNBookPaymentComponent.d.ts.map