//#region src/svg/diagnostics.d.ts declare const SVG_DIAGNOSTIC_CODES: readonly ["svg/text-unsupported", "svg/image-unsupported", "svg/use-unsupported", "svg/gradient-unsupported", "svg/element-unsupported", "svg/element-skipped", "svg/css-style-ignored", "svg/paint-unsupported", "svg/opacity-ignored", "svg/preserve-aspect-ratio-stretched", "svg/default-size-assumed", "svg/shape-unsupported", "svg/stroke-style-unsupported"]; type SvgDiagnosticCode = (typeof SVG_DIAGNOSTIC_CODES)[number]; interface SvgDiagnostic { readonly code: SvgDiagnosticCode; readonly detail?: string; } type SvgDiagnosticSink = (diagnostic: SvgDiagnostic) => void; //#endregion export { SvgDiagnosticSink as i, SvgDiagnostic as n, SvgDiagnosticCode as r, SVG_DIAGNOSTIC_CODES as t };