import BaseInputWrapper from '../input/base-input'; export default class DateInputWrapper extends BaseInputWrapper { static rootSelector: string; /** * Sets the value of the component and calls the `onChange` handler. * The value needs to use the "YYYY/MM/DD" format, * but the subsequent `onChange` handler will contain the value in the "YYYY-MM-DD" format. * * @param value The value the input is set to, using the "YYYY/MM/DD" format. */ setInputValue(value: string): void; }