import { TableRowProps } from '@mui/material'; import * as locales from '@mui/material/locale'; export type SupportedLocales = keyof typeof locales; export declare const StyledListItemText: import("@emotion/styled").StyledComponent, import("react").ElementType> & import("@mui/system").MUIStyledCommonProps, {}, {}>; export declare const StyledTableCell: import("@emotion/styled").StyledComponent, {}, {}>; export interface StyledTableRowProps extends TableRowProps { odd?: boolean | undefined; } export declare const StyledTableRow: import("@emotion/styled").StyledComponent, HTMLTableRowElement>, "className" | "style" | "classes" | "children" | "sx" | "selected" | "hover"> & import("@mui/system").MUIStyledCommonProps & StyledTableRowProps, {}, {}>; export type TableComponentSetCurrPageProps = ((args: { page: number; }) => void) | null; export type Checkable = T & { _checked?: boolean; };