import { ButtonProps } from "./Button"; export interface PopUpProps { visible: boolean; onApprove?: () => void; onReject?: () => void; onClose?: () => void; approveButtonText?: string | Element; rejectButtonText?: string | Element; approveButtonProps?: Omit; rejectButtonProps?: Omit; }