import React from 'react'; import { DefaultProps } from '../theme'; export interface ActionConfirmProps extends DefaultProps { visible: boolean; /** text of ok button */ okText?: React.ReactNode; /** text of cancel button */ cancelText?: React.ReactNode; /** Specify a function that will be called when a user clicks the OK button */ onOk?: () => void; /** Specify a function that will be called when a user clicks the OK button */ onCancel?: () => void; confirmLoading?: boolean; } export declare const ActionConfirm: import("../utils/types").ComponentWithAs; //# sourceMappingURL=ActionConfirm.d.ts.map