import type { Plugin } from "esbuild"; import MagicString from "magic-string"; interface MinifyOptions { taggedOnly?: boolean; keepComments?: boolean; } export declare const encodeUTF8: (text: string) => Uint8Array; export declare const decodeUTF8: (bytes: Uint8Array) => string; export declare function stripWhitespace(html: string, keepComments?: boolean): string; export declare function minify(code: string, opts?: MinifyOptions): MagicString; export declare const minifyTemplates: (opts?: MinifyOptions) => Plugin; export declare const writeFiles: () => Plugin; export {}; //# sourceMappingURL=index.d.ts.map