/// export type StyledProps = { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes["id"]; children?: React.ReactElement[]; /** * Value of the header text. If leave empty this field, header field will not show. */ text?: string; /** * `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