import { As, Options, Props } from "ariakit-utils/types"; import { DateFieldState } from "./datefield-state"; export declare const useDateField: import("ariakit-utils").Hook>; export declare const DateField: import("ariakit-utils").Component>; export declare type DateFieldOptions = Options & { /** * Object returned by the `useDateFieldBaseState` hook. */ state: DateFieldState; }; export declare type DateFieldProps = Props>;