import { BaseOutProperties, Container, InProperties, RenderContext, WithSignal } from '@pmndrs/uikit'; import { Clock } from './Clock'; import { Weather } from './Weather'; export type SystemBarOutProperties = BaseOutProperties; export type SystemBarProperties = InProperties; export declare class SystemBar extends Container { name: string; clock: Clock; weather: Weather; constructor(properties?: InProperties, initialClasses?: Array | string>, config?: { renderContext?: RenderContext; defaultOverrides?: InProperties; defaults?: WithSignal; }); }