import type { ComponentProps } from 'svelte'; import type { ContainerWidth } from '../@types/global'; import Clock from './Clock.svelte'; type ClockProps = ComponentProps; interface City { name: string; tzIdentifier: string; } interface Props { cities?: City[]; width?: ContainerWidth; clockSize?: ClockProps['clockSize']; clockWeight?: ClockProps['clockWeight']; } /** * A row of live analog clocks showing the current time across a list of cities or time zones. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-blog-clockwall--docs) */ declare const ClockWall: import("svelte").Component; type ClockWall = ReturnType; export default ClockWall;