declare const Clock: import("svelte").Component<{ /** * The name of the clock (to be displayed), e.g. "New York" */ name: string; /** * The UTC time to display, defaults to current time */ UTCTime?: Date; /** * The timezone identifier, e.g. "America/New_York" */ tzIdentifier: string; /** * Whether to show the clock, defaults to true */ showClock?: boolean; /** * The weight of the clock, either "normal" or "bold" */ clockWeight?: "Light" | "Normal" | "Bold"; /** * The size of the clock, either "XS", "MD", "LG", or "XL" */ clockSize?: "XS" | "MD" | "LG" | "XL"; }, {}, "">; type Clock = ReturnType; export default Clock;