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