import { PropType } from "vue";
declare type ComType = "day" | "week" | "month" | "quarter" | "year";
declare const _default: import("vue").DefineComponent<{
    type: {
        type: PropType<ComType>;
        default: string;
    };
    offset: {
        type: NumberConstructor;
        default: number;
    };
}, {
    options: import("vue").ComputedRef<{
        label: string;
        value: string;
        children: {
            complateLabel: string;
            label: string | number;
            value: string;
        }[];
    }[] | {
        label: string;
        value: string;
        children: {
            label: string | number;
            value: string;
            children: {
                complateLabel: string;
                label: string | number;
                value: string;
            }[];
        }[];
    }[] | {
        complateLabel: string;
        label: string;
        value: string;
    }[]>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
    type?: unknown;
    offset?: unknown;
} & {
    type: ComType;
    offset: number;
} & {}>, {
    type: ComType;
    offset: number;
}>;
export default _default;
