export type SvgInspection = { isSafe: boolean; isSvg: boolean; isValid: boolean; }; export declare function inspectSvg(buffer: Buffer): SvgInspection; export declare function inspectSvgFile(filePath: string, options?: { highWaterMark?: number; }): Promise; /** Validate SVG content by parsing its XML structure and rejecting active content. */ export declare function validateSvg(buffer: Buffer): boolean; //# sourceMappingURL=validateSvg.d.ts.map