/// export type StyledProps = { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes["id"]; /** * Should be valid children such as `TableCell`. */ children?: React.ReactNode; /** * If `true`, the table row will shade on hover. * @defaultValue false */ hover?: boolean; /** * If `true`, the table row will have the selected shading. * @defaultValue false */ selected?: boolean; /** * `Not Used` The sx prop lets you style elements quickly using values from your theme. * @defaultValue undefined */ sx?: never; }; declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; export default ThemedComponent; //# sourceMappingURL=Styled.d.ts.map