/// export type StyledProps = { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes["id"]; /** * The content of the component, normally `TableRow`. */ children?: React.ReactNode; /** * `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