import { FC } from 'react';
import { IMonthRowProps } from '../../utils/interfaces';
export declare const MonthNameCell: ({ monthName }: {
    monthName: string;
}) => JSX.Element;
export declare const MonthRow: FC<IMonthRowProps>;
