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;
