/** * Utilities for processing CSS and JavaScript content */ /** * Minifies JavaScript by removing comments and normalizing whitespace */ export declare const stripJS: (source: string) => string; /** * Minifies CSS by removing comments and normalizing whitespace * Note: URL resolution should be handled by the caller with correct context */ export declare const stripCSS: (source: string) => string;