react-native-unit-components
Version:
Unit React Native components
17 lines • 743 B
TypeScript
/// <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