import React from 'react';

interface AnalogClockProps {
    city?: string;
    offset?: number;
    currentTime: Date;
    showToday?: boolean;
    bgColorClassName?: string;
    textColorClassName?: string;
    bgColorHex?: string;
    textColorHex?: string;
    handColorHex?: string;
    handColorClassName?: string;
    accentColorHex?: string;
    accentColorClassName?: string;
    size?: number;
}
declare const AnalogClock: ({ city, offset, currentTime, showToday, bgColorClassName, textColorClassName, bgColorHex, textColorHex, handColorHex, handColorClassName, accentColorHex, accentColorClassName, size, }: AnalogClockProps) => "" | React.JSX.Element;

export { AnalogClock, type AnalogClockProps };
