import { SvgImageProps, SvgInfo } from './SvgImage.types'; export declare const isFallbackSvg: (svg: string) => svg is ""; export declare function getSvgViewBox(rawSvg: string, { viewBox, bbox, svgType }: SvgInfo): string | undefined; export declare function getWidth(rawSvg: string): string | undefined; export declare function getHeight(rawSvg: string): string | undefined; export declare function processSvgProps(props: Pick, svgInfo: SvgInfo): { svgType: import('../../../types/vendored/document-services-types').SvgType; viewBox: string | undefined; svgWidth: string | undefined; svgHeight: string | undefined; bBox: string; svgString: string; };