/** * Validation utilities for SVG content */ /** * Validates whether the provided content is a valid SVG string */ export declare function isValidSvgString(content: unknown): content is string; /** * Validates whether the provided content is a valid SVG element */ export declare function isValidSvgElement(content: unknown): content is Element;