import DatePicker from '../embed-picker/date-picker';
import { StepType } from './base-picker';
import { LocaleContextProps } from '../../locale/context';
export default class EmbedMinutePicker extends DatePicker {
    getStep(): StepType;
    getDisableType(): string;
    getRangeCheck(): {
        date: {
            hasYear: boolean;
            hasMonth: boolean;
            hasDay: boolean;
        };
        time: {
            hasHour: boolean;
            hasMinute: boolean;
            hasSecond: boolean;
        };
    };
    getDataSource(locale: LocaleContextProps): import("../../picker").PickerColumnData[][];
    toDate(values: any): Date;
    toValues(d: Date): any[];
}
