import type { Compiler } from 'webpack'; export interface Options { outputType: 'manifest' | 'fs-manifest'; package: { name: string; version: string; }; packageAlias: Record; contentHashLength?: number; exposeNamespaceMapping: boolean; generateCSSVarsExports: boolean; resolveNamespace(namespace: string, filePath: string): string; filterComponents(resourcePath: string): boolean; getCompId(resourcePath: string): string; getOutputFileName(contentHash: string): string; } export declare class StylableManifestPlugin { private options; constructor(options?: Partial); apply(compiler: Compiler): void; private emitManifest; private emitJSONAsset; private createModulesMetadata; } //# sourceMappingURL=stylable-manifest-plugin.d.ts.map