import { BuildOptions } from 'esbuild';
export declare const html: {
    analyze: string;
};
export declare const pathname_fixer: (str?: string) => string;
export declare const UUID: (prefix?: string) => string;
export declare const createExternal: (external: string[]) => string;
export declare const defaultOptions: (root: string) => BuildOptions;
export declare const defaultTsconfig: (root: string) => {
    compilerOptions: {
        moduleResolution: string;
        module: string;
        resolveJsonModule: boolean;
        sourceMap: boolean;
        target: string;
    };
    include: string[];
};
