import { Stats } from 'webpack'; import { YamlConfig } from '../../../types'; declare class BuildRunner { static yamlConfig: YamlConfig; static pluginId: string; static version: string; static run(options?: { zip?: boolean; }): Promise; static compile: () => Promise; static resetYamlConfig: () => void; static collectAndCheckInfo: () => void; static generateMappings: (fileName: string, folder?: string) => void; static collectFileMappings: (rootPath: string, folder?: string) => Promise; static generateYaml: () => Promise; static handleError(err?: Error, stats?: Stats): import("webpack-format-messages").Messages; } export default BuildRunner;