import { MmUIComponent } from './component' /** Time-select component */ export declare class MmTimeSelect extends MmUIComponent { /** The value of the v-model binding */ value: string /** Display time range - start time */ start: string /** Display time range - end time */ end: string /** Display time range - time interval */ step: string /** Sets whether the current time is disabled */ disabledTime(time: { hour: number, minute: number }): boolean }