/** DatePicker — themed native date control (W2 §The Kit). */
import { Input as Base } from "@base-ui/react/input";
import type { ComponentProps, ReactNode } from "react";
import { type KitStyled, type KitEngine, type KitRendered } from "../tokens.js";
interface DatePickerOwnProps extends KitStyled {
label?: string;
/** ISO yyyy-mm-dd. */
value?: string;
min?: string;
max?: string;
hint?: ReactNode;
disabled?: boolean;
required?: boolean;
onChange?: (value: string) => void;
}
/** Plus any Base UI `` prop, handed straight to the field. `style` stays
* the Kit's own — it dresses the ROOT the label and hint share, not the box. */
export type DatePickerProps = DatePickerOwnProps & KitEngine, DatePickerOwnProps>;
export declare function DatePicker({ label, value, min, max, hint, disabled, required, onChange, style, children, pending, ...engine }: DatePickerProps & KitRendered): import("react").JSX.Element;
export {};