/// interface Interface { confirmText: string; cancelText: string; onConfirm: () => void; onCancel: () => void; } export default function ConfirmCancelFooter(props: Interface): JSX.Element; export {};