import { EventEmitter } from '../../stencil-public-runtime'; import type { InputFieldState } from '../diwa-input/types'; import type { Theme } from '../../utils/styles'; export declare class DiwaInputDate { el: HTMLElement; private _hasStart; private _hasEnd; label: string; description: string; message: string; state: InputFieldState; name: string; value: string; placeholder: string; disabled: boolean; required: boolean; readonly: boolean; hideLabel: boolean; compact: boolean; autoComplete?: string; theme: Theme; /** ISO 8601 date string (YYYY-MM-DD) for the minimum allowed date. */ min?: string; /** ISO 8601 date string (YYYY-MM-DD) for the maximum allowed date. */ max?: string; change: EventEmitter; input: EventEmitter; blur: EventEmitter; focus: EventEmitter; connectedCallback(): void; private handleInput; private handleChange; private handleBlur; private handleFocus; render(): any; } //# sourceMappingURL=diwa-input-date.d.ts.map