import type { BoxProps } from '@mui/material'; import React from 'react'; interface ClockProps extends BoxProps { date: number; } /** Props for {@link XyOsClock}. */ export interface XyOsClockProps { clockSize: 'small' | 'medium' | 'large'; clockType: 'appbar' | 'widget'; } /** Live clock that renders appbar or widget layouts at small, medium, or large sizes. */ export declare const XyOsClock: React.FC; /** Compact app-bar clock showing abbreviated date and short time. */ export declare const SmallAppBarClock: React.FC; /** Medium app-bar clock with abbreviated date and longer time format. */ export declare const MediumAppBarClock: React.FC; /** Large app-bar clock with full weekday date and long time format. */ export declare const LargeAppBarClock: React.FC; /** Compact widget clock with time above abbreviated date. */ export declare const SmallWidgetClock: React.FC; /** Medium widget clock with longer time and date formats. */ export declare const MediumWidgetClock: React.FC; /** Large widget clock showing weekday, time, and full date. */ export declare const LargeWidgetClock: React.FC; export {}; //# sourceMappingURL=XyOsClock.d.ts.map