export default Time; type Time = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial<{ wid?: number; date?: Date; startDate?: Date | null; endDate?: Date | null; hourOnly?: boolean; minuteIncrement?: number; showMeridian?: boolean; hasDateComponent?: boolean; i18n: i18nType; onupdate: (updateProp: UpdateProp) => void; onswitch: (date: string) => void; }>): void; } & { showMinuteView: () => void; makeTick: (val: number) => void; }; declare const Time: import("svelte").Component<{ wid?: number; date?: Date; startDate?: Date | null; endDate?: Date | null; hourOnly?: boolean; minuteIncrement?: number; showMeridian?: boolean; hasDateComponent?: boolean; i18n: import("../i18n/index.js").i18nType; onupdate: (updateProp: import("../types/internal.js").UpdateProp) => void; onswitch: (date: string) => void; }, { showMinuteView: () => void; makeTick: (val: number) => void; }, "date">;