import { ComponentProps, ElementType, SVGProps } from "react"; import { FillProp, HeightProp, ResponsiveProp, StrokeProp, StyledSystemProps, WidthProp } from "../../styling"; import { InternalProps, OmitInternalProps, SlotProps } from "../../shared"; declare type OverlappingStyleProps = "fill" | "height" | "stroke" | "width"; export interface InnerSvgImageProps extends Omit, SlotProps, Omit, Omit, keyof StyledSystemProps | OverlappingStyleProps> { /** * See [WCAG](https://www.w3.org/TR/WCAG20-TECHS/ARIA14.html). */ "aria-label": string; /** * See [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill). */ fill?: FillProp; /** * The image height. */ height?: HeightProp; /** * An SVG as a component. */ src?: ResponsiveProp; /** * See [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke). */ stroke?: StrokeProp; /** * The image width. */ width?: WidthProp; } export declare function InnerSvgImage({ forwardedRef, src, ...rest }: InnerSvgImageProps): JSX.Element; /** * [Documentation](https://orbit.sharegate.design/?path=/docs/image--shape ) */ export declare const SvgImage: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type SvgImageProps = ComponentProps; export {};