export interface CalcDepthContext { getDependencies: (module: T) => Iterable; getImporters: (module: T) => Iterable; getModulePathNoExt: (module: T) => string; isStylableModule: (module: T) => boolean; } export declare function calcDepth(module: T, context: CalcDepthContext, path?: T[], cache?: Map): number; export declare function getCSSViewModule(module: T, context: CalcDepthContext): T | undefined; //# sourceMappingURL=calc-depth.d.ts.map