import React from "react"; import type { CountDownModalProps } from "./countdown-modal"; interface ActionHandler { (setLoading: (d: boolean) => void, e?: React.MouseEvent): unknown; } export interface ActionModalProps extends Omit { onCancel: ActionHandler; onOk: ActionHandler; onCountdownEnd: ActionHandler; } declare const ActionModal: { (props: ActionModalProps): JSX.Element; defaultProps: { cancelButtonProps: {}; }; }; export default ActionModal;