import type { ComponentProps } from "react"; import type { Svg } from "./core/svgs"; type SvgFromUrlProps = { width: number; height: number; svg: Svg; }; declare function SvgFromUrl({ svg, width, height, ...props }: SvgFromUrlProps & ComponentProps<"svg">): import("react/jsx-runtime").JSX.Element; export default SvgFromUrl; //# sourceMappingURL=SvgFromUrl.d.ts.map