import { Models } from '../date/DataTypes';
export interface ConfirmPanelPropsType {
    type?: 'one' | 'range';
    locale: Models.Locale;
    onlyConfirm?: boolean;
    disableBtn?: boolean;
    startDateTime?: Date;
    endDateTime?: Date;
    formatStr?: string;
    onConfirm: () => void;
}
export declare class ConfirmPanelComponent {
    props: ConfirmPanelPropsType;
    startTimeStr: string;
    endTimeStr: string;
    btnCls: string;
    propsData: any;
    disableBtn: any;
    formatStr: any;
    startDateTime: any;
    endDateTime: any;
    onConfirm: any;
    confirmPane: boolean;
    constructor();
    formatTime(): void;
    triggerConfirm: () => void;
    selfFormatDate(date: Date): string;
}
