import type { HTMLInputAttributes } from 'svelte/elements'; import type { ControlInteractionOptions } from './control-interaction.js'; export interface Props extends Omit { /** Selected date value as a string (bindable). */ value?: string; /** Label for the date picker control. */ label: string; /** CSS class to apply to the picker container. */ class?: string; /** Interaction options or false to disable all. */ interaction?: ControlInteractionOptions | false; } declare const DatePicker: import("svelte").Component; type DatePicker = ReturnType; export default DatePicker; //# sourceMappingURL=DatePicker.svelte.d.ts.map