///
import { type TableProps } from '@mui/material/Table';
export type StyledProps = {
/**
* current element id
* @defaultValue ""
* @optional
* @type string
*/
id?: React.HtmlHTMLAttributes["id"];
/**
* Override or extend the styles applied to the component.
*/
children?: React.ReactNode;
/**
* Allow TableCells to inherit padding of the table.
* @defaultValue 'normal'
*/
padding?: "checkbox" | "none" | "normal";
/**
* Allow TableCells to inherit size of the Table
* @defaultValue 'medium'
*/
size?: "medium";
/**
* Set the header sticky.
* @defaultValue false
*/
stickyHeader?: boolean;
/**
* `Not Used` The sx prop lets you style elements quickly using values from your theme.
* @defaultValue undefined
*/
sx?: never;
} & TableProps;
declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element;
export default ThemedComponent;
//# sourceMappingURL=Styled.d.ts.map