import type { IconData, IconProps } from './types'; export declare const SVG_NS = "http://www.w3.org/2000/svg"; /** * Default viewBox shared by all Material Symbols icons. Icons that use a * different viewBox store it in `IconData.vb`. */ export declare const DEFAULT_VIEWBOX = "0 -960 960 960"; export type SvgStringOpts = IconProps & { xclass?: string; }; /** * Build a standalone SVG string from icon data. Replaces the previous * DOMParser-based implementation, so it works in non-DOM environments (SSR, * tests) too. */ export declare const buildSvgString: (data: IconData, opts?: SvgStringOpts) => string;