import React from 'react'; export type StyledProps = { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes['id']; /** * set a alert severity. */ severity?: "success" | "error" | "warning" | "info"; /** * set a background color */ bgColor?: string; /** * set a color */ color?: string; /** * set a size */ size?: "small" | "medium"; /** * set a label */ label?: string; /** * set a disabled */ disabled?: boolean; }; declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; export default ThemedComponent; //# sourceMappingURL=Styled.d.ts.map