import '@oicl/openbridge-webcomponents/dist/components/clock/clock.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; /** The ISO date/time string to display in the clock. Controls both the time (HH:MM) and the date (if `showDate` is true). */ date?: string; showSeconds?: boolean; /** If true, displays the date (day and abbreviated month) after the time. Defaults to `false`. */ showDate?: boolean; /** If true, displays the timezone after the time. Defaults to `false`. */ showTimezone?: boolean; /** Timezone offset in hours, from UTC. Defaults to `0`. */ timeZoneOffsetHours?: number; isClickable?: boolean; showYear?: boolean; showWeekday?: boolean; locale?: string; hour12?: boolean; selected?: boolean; double?: boolean; /** If true, the clock as a button is activated. For example, when the calendar is open, the clock is activated. */ activated?: boolean; integrationBarMode?: boolean; /** The pixel width at which the component switches to blink-only mode. When the viewport width is less than or equal to this value, only the blinking colon is shown. Defaults to `0` (never switches to blink-only). */ blinkOnlyBreakpointPx?: number; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcClock: import("svelte").Component<$$ComponentProps, {}, "">; type ObcClock = ReturnType; export default ObcClock;