omnipay-savings-sdk
Version:
Omnipay Savings SDK
14 lines (13 loc) • 403 B
TypeScript
type Props = {
visible: boolean;
onClose: () => void;
onPressContinue: (transactionId: string) => void;
resetPin: () => void;
plan: any;
withdrawalLimit?: number | null;
isLockedSavings?: boolean;
penaltyFeePercentage?: number;
isBeforeMaturity?: boolean;
};
declare const Withdraw: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default Withdraw;