import { Models } from '../date/DataTypes';
export interface PropsType {
    locale: Models.Locale;
    prefixCls?: string;
    pickerPrefixCls?: string;
    title?: string;
    defaultValue?: Date;
    value?: Date;
    onValueChange?: (time: Date) => void;
    mode?: string;
    minDate?: Date;
    maxDate?: Date;
    clientHeight?: number;
    datePickerViewLocale?: any;
}
export declare class TimePickerComponent {
    defaultProps: PropsType;
    props: PropsType;
    selfHeight: string;
    propsData: any;
    title: any;
    value: any;
    prefixCls: any;
    defaultValue: any;
    pickerPrefixCls: any;
    clientHeight: any;
    onValueChange: any;
    timePicker: boolean;
    constructor();
    onDateChange: (date: Date) => void;
    getMinTime(date?: Date): Date;
    getMaxTime(date?: Date): Date;
}
