import type { JSX } from '../../stencil-public-runtime';
import type { AutoCompletePropType, DisabledPropType, FocusableElement, HideLabelPropType, HideMsgPropType, HintPropType, IconsHorizontalPropType, InputDateAPI, InputDateStates, InputDateTypePropType, InputTypeOnDefault, InternalButtonProps, Iso8601, LabelWithExpertSlotPropType, MsgPropType, NamePropType, NumberString, ReadOnlyPropType, RequiredPropType, ShortKeyPropType, Stringified, SuggestionsPropType, SyncValueBySelectorPropType, TooltipAlignPropType, VariantClassNamePropType } from '../../schema';
export declare class KolInputDate implements InputDateAPI, FocusableElement {
    protected readonly host?: HTMLKolInputDateElement;
    protected readonly ctaRef: import("../../utils/element-interaction").CtaRef<HTMLInputElement>;
    private _initialValueType;
    getValue(): Promise<string | Date | undefined | null>;
    focus(): Promise<void>;
    click(): Promise<void>;
    reset(): Promise<void>;
    private setInitialValueType;
    private remapValue;
    private readonly onBlur;
    private readonly onFocus;
    private readonly onChange;
    private readonly onInput;
    private readonly isNativeCalendarIconFocused;
    private readonly onKeyDown;
    private getFormFieldProps;
    private getInputProps;
    render(): JSX.Element;
    private readonly controller;
    _accessKey?: string;
    _autoComplete?: AutoCompletePropType;
    _disabled?: boolean;
    _hideMsg?: boolean;
    _hideLabel?: boolean;
    _hint?: string;
    _icons?: IconsHorizontalPropType;
    _label: LabelWithExpertSlotPropType;
    _max?: Iso8601 | Date;
    _min?: Iso8601 | Date;
    _msg?: Stringified<MsgPropType>;
    _name?: NamePropType;
    _on?: InputTypeOnDefault;
    _readOnly?: boolean;
    _required?: boolean;
    _shortKey?: ShortKeyPropType;
    _smartButton?: Stringified<InternalButtonProps>;
    _suggestions?: SuggestionsPropType;
    _syncValueBySelector?: SyncValueBySelectorPropType;
    _step?: number | NumberString;
    _tooltipAlign?: TooltipAlignPropType;
    _touched?: boolean;
    _type: InputDateTypePropType;
    _value?: Iso8601 | Date | null;
    _variant?: VariantClassNamePropType;
    state: InputDateStates;
    private inputHasFocus;
    constructor();
    private showAsAlert;
    validateAccessKey(value?: string): void;
    validateAutoComplete(value?: AutoCompletePropType): void;
    validateDisabled(value?: DisabledPropType): void;
    validateHideMsg(value?: HideMsgPropType): void;
    validateHideLabel(value?: HideLabelPropType): void;
    validateHint(value?: HintPropType): void;
    validateIcons(value?: IconsHorizontalPropType): void;
    validateLabel(value?: LabelWithExpertSlotPropType): void;
    validateMax(value?: Iso8601 | Date): void;
    validateMin(value?: Iso8601 | Date): void;
    validateMsg(value?: Stringified<MsgPropType>): void;
    validateName(value?: string): void;
    validateOn(value?: InputTypeOnDefault): void;
    validateReadOnly(value?: ReadOnlyPropType): void;
    validateRequired(value?: RequiredPropType): void;
    validateShortKey(value?: ShortKeyPropType): void;
    validateSmartButton(value?: InternalButtonProps | string): void;
    validateSuggestions(value?: SuggestionsPropType): void;
    validateStep(value?: number | NumberString): void;
    validateSyncValueBySelector(value?: SyncValueBySelectorPropType): void;
    validateTouched(value?: boolean): void;
    validateType(value?: InputDateTypePropType): void;
    validateValue(value?: Iso8601 | Date | null): void;
    validateVariant(value?: VariantClassNamePropType): void;
    componentWillLoad(): void;
}
