import { FunctionalComponent } from "../../stencil-public-runtime"; import { DuetLanguage, DuetTheme, DuetTooltipDirection } from "../../common-types"; import { DuetInputEvent } from "../duet-input/duet-input"; type DatePickerInputProps = { value: string; valueAsDate: Date; formattedValue: string; language: DuetLanguage; placeholder: string; name: string; identifier: string; inputLabel: string; disabled: boolean; theme: DuetTheme; error: string; role: string; required: boolean; tooltip: string; tooltipDirection: DuetTooltipDirection; labelHidden: boolean; accessibleActiveDescendant: string; accessibleControls: string; accessibleOwns: string; accessibleDescribedBy: string; accessibleLiveError: "off" | "polite" | "assertive"; echoPlaceholder: boolean; caption: string; onClick: (event: MouseEvent) => void; onInput: (event: CustomEvent) => void; onBlur: (event: CustomEvent) => void; onFocus: (event: CustomEvent) => void; buttonRef: (element: HTMLButtonElement) => void; inputRef: (element: HTMLDuetInputElement) => void; hasFocus: boolean; }; export declare const DatePickerInput: FunctionalComponent; export {};