/// interface IProps { /** @ignore */ className?: string; /** Value to show */ value: string; /** Location of number in degrees (0 = top) */ degrees: number; /** Is the clock number currently selected? */ active: boolean; } declare const ClockNumber: import("styled-components").StyledComponent<(props: IProps) => JSX.Element, import("../../../styles/Theme").IThemeInterface, { left: number; top: number; yFix: number; }, "left" | "top" | "yFix">; export { ClockNumber };