UNPKG

react-native-unit-components

Version:

Unit React Native components

16 lines 711 B
/// <reference types="react" /> import { UNCard, UNComponentsOnLoadResponse } from '../../types/shared'; import { UNCreateCardComponentResources, UNCreateCardType } from '../../types/shared/createCard.types'; export interface UNCreateCardComponentProps { accountId?: string; cardTypes: UNCreateCardType[]; virtualCardFee?: number; physicalCardFee?: number; theme?: string; language?: string; onLoad?: (response: UNComponentsOnLoadResponse<UNCreateCardComponentResources>) => void; onCardCreated?: (cardData: UNCard) => void; } declare const _default: (props: UNCreateCardComponentProps) => JSX.Element; export default _default; //# sourceMappingURL=UNCreateCardComponent.d.ts.map