import type { HTMLInputAttributes } from "svelte/elements";
type $$ComponentProps = {
    label: string;
    value?: string;
    required?: boolean;
    disabled?: boolean;
    error?: boolean;
    datePickerTitle?: string;
} & HTMLInputAttributes;
declare const DateFieldOutlined: import("svelte").Component<$$ComponentProps, {}, "value">;
type DateFieldOutlined = ReturnType<typeof DateFieldOutlined>;
export default DateFieldOutlined;
