export declare function minify(source: string, unsafe?: boolean): string; /** * Minna UI svelte markup preprocessor. * Reduces the whitespace in svelte components to a minimum. * * @param opts - User defined options. * @param opts.enabled - Enable preprocessor to transform HTML code. */ export declare const markup: ({ enabled, unsafe, }?: { enabled?: boolean | undefined; unsafe?: boolean | undefined; }) => ((options: { content: string; filename: string; }) => import("svelte/types/compiler/preprocess").Processed | Promise) | undefined; //# sourceMappingURL=markup.d.ts.map