import { SvelteComponentTyped } from "svelte"; import type { Locale } from './locale'; import { Dayjs } from 'dayjs'; import type MaterialIcons from '../../types/material-icons'; declare const __propDef: { props: { trailing?: MaterialIcons | undefined; name: string; label?: string | undefined; srOnly?: boolean | undefined; error?: string | undefined; placeholder?: string | undefined; value?: Date | null | undefined; min?: Date | undefined; max?: Date | undefined; format?: string | undefined; locale?: Locale | undefined; text?: string | undefined; visible?: boolean | undefined; closeOnSelection?: boolean | undefined; closeOnSelect?: boolean | undefined; handleSelect?: ((d: Dayjs) => void) | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type DateInputProps = typeof __propDef.props; export declare type DateInputEvents = typeof __propDef.events; export declare type DateInputSlots = typeof __propDef.slots; export default class DateInput extends SvelteComponentTyped { } export {};