import { BTimeRangeFieldSlots } from '../../types';
import { BTimeRangeFieldProps } from '../../types/ComponentProps';
type __VLS_Props = Omit<BTimeRangeFieldProps, 'modelValue' | 'placeholder'>;
type __VLS_PublicProps = {
    modelValue?: Exclude<BTimeRangeFieldProps['modelValue'], undefined>;
    'placeholder'?: BTimeRangeFieldProps['placeholder'];
} & __VLS_Props;
declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: Readonly<BTimeRangeFieldSlots> & BTimeRangeFieldSlots;
    refs: {};
    rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    "update:modelValue": (value: {
        start: import('reka-ui').TimeValue | undefined;
        end: import('reka-ui').TimeValue | undefined;
    } | null) => any;
    "update:placeholder": (value: import('reka-ui').TimeValue | undefined) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    "onUpdate:modelValue"?: ((value: {
        start: import('reka-ui').TimeValue | undefined;
        end: import('reka-ui').TimeValue | undefined;
    } | null) => any) | undefined;
    "onUpdate:placeholder"?: ((value: import('reka-ui').TimeValue | undefined) => any) | undefined;
}>, {
    disabled: boolean;
    id: string;
    name: string;
    readonly: boolean;
    required: boolean;
    size: import('../..').Size;
    state: import('../..').ValidationState;
    dir: "ltr" | "rtl";
    defaultValue: {
        start: import('reka-ui').TimeValue | undefined;
        end: import('reka-ui').TimeValue | undefined;
    };
    step: {
        year?: number;
        month?: number;
        day?: number;
        hour?: number;
        minute?: number;
        second?: number;
        millisecond?: number;
    };
    defaultPlaceholder: import('reka-ui').TimeValue;
    granularity: "hour" | "minute" | "second";
    hideTimeZone: boolean;
    hourCycle: 12 | 24;
    locale: string;
    maxValue: import('reka-ui').TimeValue;
    minValue: import('reka-ui').TimeValue;
    isTimeUnavailable: (date: import('reka-ui').DateValue) => boolean;
    stepSnapping: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
