/** The props for the [[Table]] component. */
export interface TableProps {
    /** The ID of the label of the table (the same given to the Caption). */
    ['aria-labelledby']?: string;
    /** The month where the table is displayed. */
    displayMonth: Date;
}
/** Render the table with the calendar. */
export declare function Table(props: TableProps): JSX.Element;
