UNPKG

react-native-unit-components

Version:

Unit React Native components

24 lines 944 B
/// <reference types="react" /> import type { UNOnLoadResponse, UNACHData, UNACHOnLoadData } from '../../types/shared'; import { UNPlaidAccountFilter } from '../../types/shared'; export interface UNACHCreditComponentProps { accountId?: string; customerToken: string; theme?: string; language?: string; isAutoFocus?: boolean; fee?: number; withPlaid?: boolean; onPaymentCreated?: (data: UNACHData) => void; onInitialStageBackButtonClicked?: () => void; onFinalStageDoneButtonClicked?: () => void; onLoad?: (response: UNOnLoadResponse<UNACHOnLoadData>) => void; sameDay?: boolean; plaidAccountFilters?: UNPlaidAccountFilter[]; plaidLinkCustomizationName?: string; initialStageBackButton?: boolean; finalStageDoneButton?: boolean; } declare const _default: (props: UNACHCreditComponentProps) => JSX.Element; export default _default; //# sourceMappingURL=UNACHCreditComponent.d.ts.map