///
import { MarginTypes } from "../../Style/Margin";
import { PaddingTypes } from "../../Style/Padding";
export interface StyledProps extends MarginTypes, PaddingTypes {
/**
* current element id
* @defaultValue ""
* @optional
* @type string
*/
id?: React.HtmlHTMLAttributes["id"];
/**
* The URL of the SVG or image.
*/
url?: string;
/**
* The alt prop of the SVG or image.
*/
alt?: string;
/**
* The width of the SVG or image.
*/
width?: string | number;
/**
* The height of the SVG or image.
*/
height?: string | number;
}
declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element;
export default ThemedComponent;
//# sourceMappingURL=Styled.d.ts.map