/**
 * The props for the [[Row]] component.
 */
export interface RowProps {
    /** The month where the row is displayed. */
    displayMonth: Date;
    /** The number of the week to render. */
    weekNumber: number;
    /** The days contained in the week. */
    dates: Date[];
}
/** Render a row in the calendar, with the days and the week number. */
export declare function Row(props: RowProps): JSX.Element;
