export interface BuildOutputConfig {
    external: (string | RegExp)[];
    globals: Record<string, string>;
}
export interface GetBuildOutputConifgOptions {
    rootPath: string;
    framework: string;
    type: 'nasl.ui' | 'extension';
    addDepExternal?: boolean;
}
export declare function getBuildOutputConifg({ rootPath, framework, addDepExternal }: GetBuildOutputConifgOptions): {
    external: (string | RegExp)[];
    globals: Record<string, string>;
};
