import { ReactElement } from 'react';
interface HourIndicatorProps {
    cellHeight: number;
}
export default function HourIndicator(props: HourIndicatorProps): ReactElement;
export {};
