import { FC } from 'react';
interface ClockHoursProps {
    date?: Date | null;
    containerRadius: number;
}
declare const ClockHours: FC<ClockHoursProps>;
export default ClockHours;
