import React, { CSSProperties } from 'react'; import './styles.scss'; export interface SVGProps { file?: string | [string, string]; className?: string; style?: CSSProperties; title?: string | JSX.Element; sub?: string | JSX.Element; source?: string | JSX.Element; aspectRatio?: string; height?: string | [string, string]; oversized?: boolean; children?: JSX.Element; imageFirst?: boolean; props?: any; [key: string]: any; } export declare const InlineSvg: { ({ file, className, style, title, sub, source, height, aspectRatio, oversized, children, imageFirst, ...props }: SVGProps): React.JSX.Element; defaultProps: { className: string; oversized: boolean; }; }; //# sourceMappingURL=component.d.ts.map