import { ITemplateHandlerOptions } from './types.js';
export { isAllowedClassName } from '@weapp-core/escape';
import '@babel/parser';
import '@weapp-tailwindcss/mangle';
import '@weapp-tailwindcss/postcss';
import 'magic-string';
import 'postcss';
import 'tailwindcss-patch';
import 'node:buffer';
import 'webpack';
import 'lru-cache';
import 'postcss-preset-env';

declare function replaceWxml(original: string, options?: ITemplateHandlerOptions): string;

declare const weappTwIgnore: (template: {
    raw: readonly string[] | ArrayLike<string>;
}, ...substitutions: any[]) => string;

export { replaceWxml as escape, weappTwIgnore };
