UNPKG

react-native-unit-components

Version:

Unit React Native components

22 lines 906 B
/// <reference types="react" /> import type { UNComponentsOnLoadResponse, UNACHOnLoadData, UNPlaidAccountFilter, UNACHPayment } from '../../types/shared'; export interface UNACHCreditComponentProps { accountId?: string; theme?: string; language?: string; isAutoFocus?: boolean; fee?: number; withPlaid?: boolean; onPaymentCreated?: (data: UNACHPayment) => void; onInitialStageBackButtonClicked?: () => void; onFinalStageDoneButtonClicked?: () => void; onLoad?: (response: UNComponentsOnLoadResponse<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