import { t as ModuleTheme } from "../module-theme-CHZkkCvf.js"; import { ReactNode } from "react"; //#region src/modules/manual-input/CalendarManualInput.d.ts type CalendarManualInputProps = { /** * Token string with `DD`, `MM`, `YYYY` and single-char separators — * `"DD.MM.YYYY"` (default), `"MM/DD/YYYY"`, `"YYYY-MM-DD"`. Also the * default placeholder. */ format?: string; placeholder?: string; /** * Span modes: which bound this input edits. Two inputs (`"from"` + `"to"`) * compose a from—to row. Default `"from"`. Ignored for point selections. */ bound?: "from" | "to"; /** Visible label before the input (wired via htmlFor). */ label?: ReactNode; /** aria-label override when no visible label (registry key `manualInput`). */ inputLabel?: string; /** Clear (×) button inside the input. Clears the whole selection. */ allowClear?: boolean; /** Override for the clear aria-label (registry key `clear`). */ clearLabel?: string; /** Horizontal alignment of the row. Default "left". */ align?: "left" | "center" | "right"; /** * Per-module theme override: a built-in family name (`data-theme`) or a * `createTheme` token object (inline `--c-*` vars on the container). */ theme?: ModuleTheme; /** Per-module scheme override (`data-scheme` on the module container). */ scheme?: "light" | "dark" | "auto"; col?: number | string; className?: string; }; declare function CalendarManualInput({ format: formatProp, placeholder, bound, label, inputLabel, allowClear, clearLabel, align, theme, scheme, col, className }: CalendarManualInputProps): import("react/jsx-runtime").JSX.Element; //#endregion export { CalendarManualInput, type CalendarManualInputProps };