react-native-unit-components
Version:
Unit React Native components
19 lines • 833 B
TypeScript
/// <reference types="react" />
import type { UNFundAccountPaymentData, UNFundAccountPaymentOnLoadData, UNOnLoadResponse } from '../../types/shared';
export interface UNFundAccountPaymentComponentProps {
accountId?: string;
customerToken: string;
fee?: number;
isAutoFocus?: boolean;
theme?: string;
language?: string;
initialStageBackButton?: boolean;
finalStageDoneButton?: boolean;
onLoad?: (response: UNOnLoadResponse<UNFundAccountPaymentOnLoadData>) => void;
onPaymentCreated?: (data: UNFundAccountPaymentData) => void;
onInitialStageBackButtonClicked?: () => void;
onFinalStageDoneButtonClicked?: () => void;
}
declare const _default: (props: UNFundAccountPaymentComponentProps) => JSX.Element;
export default _default;
//# sourceMappingURL=UNFundAccountPaymentComponent.d.ts.map