import { Components } from '@vime/core'; interface VmTimeProps { class?: string; style?: string; /** The `aria-label` property of the time. */ label?: Components.VmTime["label"]; /** The length of time in seconds. */ seconds?: Components.VmTime["seconds"]; /** 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.VmTime["alwaysShowHours"]; } interface VmTimeEvents { } interface VmTimeSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class Time extends SvelteComponent { $$prop_def: VmTimeProps; $$events_def: VmTimeEvents; $$slot_def: VmTimeSlots; $on(type: K, callback: (e: VmTimeEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmTimeElement | undefined; } export default Time;