import { Component, ReactInstance } from 'react'; import type { SVGIconProps } from './props'; /** --- category: components/utilities --- **/ declare class SVGIcon extends Component { static readonly componentId = "SVGIcon"; static allowedProps: readonly (keyof import("../InlineSVG/props").InlineSVGOwnProps | "rotate" | "size" | "bidirectional")[]; static defaultProps: { rotate: string; bidirectional: boolean; }; ref: ReactInstance | null; handleRef: (el: Element | null) => void; componentDidMount(): void; componentDidUpdate(): void; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default SVGIcon; export { SVGIcon }; //# sourceMappingURL=index.d.ts.map