/// <reference types="react" />
import { Component } from '../component';
import { PopoverConfirmProps } from './Props';
interface ConfirmState {
    ok: boolean;
    cancel: boolean;
}
export default class Confirm extends Component<PopoverConfirmProps, ConfirmState> {
    static defaultProps: any;
    handleCancel: (close: Function) => void;
    handleOk: (close: Function) => void;
    constructor(props: PopoverConfirmProps);
    handleClick(type: 'cancel' | 'ok', close: Function): void;
    render(): JSX.Element;
}
export {};
