import type { IClientSideComponentManifest, _IOperatorOrSwitch } from '@microsoft/sp-module-interfaces'; import type { IModuleLoader } from '../interfaces/IModuleLoader'; /** * Load all the component dependencies of an SPFx component. * * @param loader - Module loader instance. * @param manifest - Manifest of the dependent component. * @param depNames - Array of dependency names. * * @returns An array of Promises resolving to a respective dependency. */ export declare function loadComponentDependencies(loader: IModuleLoader, manifest: IClientSideComponentManifest, depNames: string[]): Promise[]; /** * Load all the path dependencies of an SPFx component. * * @param loader - Module loader instance. * @param manifest - Manifest of the dependent component. * @param depNames - Array of dependency names. * * @returns An array of Promises resolving to a respective dependency. */ export declare function loadPathDependencies(loader: IModuleLoader, manifest: IClientSideComponentManifest, depNames: string[]): Promise[]; export declare function _evaluateFlightOrManifestOperator(operator: _IOperatorOrSwitch): boolean; //# sourceMappingURL=dependencyLoading.d.ts.map