import { EventEmitter } from '../../stencil-public-runtime'; import { CatDatepickerMode } from '../cat-datepicker/cat-datepicker.mode'; export declare class CatDatepickerInline { private pickr?; private input?; /** * Whether the input is disabled. */ disabled: boolean; /** * A maximum value as ISO Date string, e.g. 2017-03-04T01:23:43.000Z. */ max?: string; /** * A minimum value as ISO Date string, e.g. 2017-03-04T01:23:43.000Z. */ min?: string; /** * The mode of the datepicker, to select a date, time, both, a date range or a week number. */ mode: CatDatepickerMode; /** * The value is not editable. */ readonly: boolean; /** * The step size to use when changing the time. */ step: number; /** * The value as ISO Date string, e.g. 2017-03-04T01:23:43.000Z or as a week number string. */ value?: string; /** * Attributes that will be added to the rendered HTML datepicker element. */ nativePickerAttributes?: { [key: string]: string; }; /** * Emitted when the value is changed. */ catChange: EventEmitter; onValueChanged(value: string): void; onDisabledChanged(): void; componentDidLoad(): void; render(): any; private initDatepicker; }