import { EventEmitter } from '../../stencil-public-runtime'; import type { InputFieldState } from '../diwa-input/types'; import type { Theme } from '../../utils/styles'; export declare class DiwaInputWeek { 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; /** Minimum week in YYYY-Www format (e.g. 2024-W01). */ min?: string; /** Maximum week in YYYY-Www format (e.g. 2024-W52). */ 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-week.d.ts.map