import { ExtractPropTypes, PropType } from 'vue';
export declare const touchTimeProps: {
    title: {
        type: StringConstructor;
        default: string;
    };
    modelValue: {
        type: StringConstructor;
        default: string;
    };
    format: {
        type: StringConstructor;
        default: string;
    };
    maxTime: {
        type: StringConstructor;
        default: undefined;
    };
    minTime: {
        type: StringConstructor;
        default: undefined;
    };
    optionFormatter: {
        type: PropType<(type: string, value: string) => string>;
        default: undefined;
    };
    visiableOptionCount: {
        type: NumberConstructor;
        default: number;
    };
    showToolbar: {
        type: BooleanConstructor;
        default: boolean;
    };
    use12Hours: {
        type: BooleanConstructor;
        default: boolean;
    };
};
export type TouchTimeProps = ExtractPropTypes<typeof touchTimeProps>;
