import { EventType, Locale, StatusType, Theme, UserWithRangeType } from '../../types';
type ContentProps = {
    currentDate: string;
    thRef: React.RefObject<HTMLDivElement | null>;
    theme?: Theme;
    cellSize?: string;
    userWithRange: UserWithRangeType[];
    tdWidth: number | null;
    events?: EventType[];
    statuses?: StatusType[];
    isLoading: boolean;
    lang: Locale;
};
declare const Content: import('react').MemoExoticComponent<(props: ContentProps) => import("react/jsx-runtime").JSX.Element>;
export default Content;
