import { As, Options, Props } from "ariakit-utils/types"; import { DatePickerState } from "./datepicker-state"; import { DateRangePickerState } from "./daterangepicker-state"; export declare const useDatePickerLabel: import("ariakit-utils/types").Hook>; export declare const DatePickerLabel: import("ariakit-utils/types").Component>; export declare type DatePickerLabelOptions = Options & { /** * Object returned by the `useDatePickerState` hook. */ state: DatePickerState | DateRangePickerState; }; export declare type DatePickerLabelProps = Props>;