import { Components } from '@vime/core'; interface VmEndTimeProps { class?: string; style?: string; /** */ duration?: Components.VmEndTime["duration"]; /** */ i18n?: Components.VmEndTime["i18n"]; /** Whether the time should always show the hours unit, even if the time is less than 1 hour (eg: `20:35` -> `00:20:35`). */ alwaysShowHours?: Components.VmEndTime["alwaysShowHours"]; } interface VmEndTimeEvents { } interface VmEndTimeSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class EndTime extends SvelteComponent { $$prop_def: VmEndTimeProps; $$events_def: VmEndTimeEvents; $$slot_def: VmEndTimeSlots; $on(type: K, callback: (e: VmEndTimeEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmEndTimeElement | undefined; } export default EndTime;