import { type StyledProps } from "./Styled"; /** * moaui Styled SVG * * @param props - id, url, alt, width, height * @example * * @reuturns JSX.Element */ declare const SVG: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; url: string; alt: string; width: string; height: string; }; export default SVG; export { type StyledProps as SVGProps, SampleProps as SVGSample, }; //# sourceMappingURL=index.d.ts.map