import { PropType } from 'vue';
import dayjs from 'dayjs';
import { EPickerCols } from '../../_common/js/time-picker/const';
export declare const panelProps: () => {
    disabled: {
        default: boolean;
        type: BooleanConstructor;
        validator(v: boolean): boolean;
    };
    isFocus: {
        default: boolean;
        type: BooleanConstructor;
        validator(v: boolean): boolean;
    };
    value: {
        type: StringConstructor;
        default: string;
    };
    format: {
        type: StringConstructor;
        default: string;
    };
    steps: {
        default: number[];
        type: PropType<(string | number)[]>;
    };
    isShowPanel: {
        default: boolean;
        type: BooleanConstructor;
        validator(v: boolean): boolean;
    };
    hideDisabledTime: {
        type: BooleanConstructor;
        default: boolean;
    };
    disableTime: {
        type: FunctionConstructor;
    };
    isFooterDisplay: {
        type: BooleanConstructor;
        default: boolean;
        validator(v: boolean): boolean;
    };
};
export declare const panelColProps: () => {
    format: {
        type: StringConstructor;
        default: string;
    };
    cols: {
        type: PropType<EPickerCols[]>;
        default: () => EPickerCols[];
    };
    value: {
        type: StringConstructor;
        default: string;
    };
    range: {
        type: PropType<dayjs.Dayjs[]>;
        default: () => dayjs.Dayjs[];
    };
    steps: {
        default: number[];
        type: PropType<(string | number)[]>;
    };
    hideDisabledTime: {
        type: BooleanConstructor;
        default: boolean;
    };
    disableTime: {
        type: FunctionConstructor;
    };
    localeMeridiems: {
        type: PropType<string[]>;
    };
};
