import { Configuration } from 'webpack'; import { SharedDependency } from './types'; export declare function getVariables(name: string, version: string, env: string): Record; export declare function setEnvironment(variables: Record): void; export declare function getDefineVariables(variables: Record): {}; export declare function getExternals(piral: string): any[]; export declare function getDependencies(importmap: Array, compilerOptions: Configuration): {}; export declare function withExternals(compilerOptions: Configuration, externals: Array): void;