import { IDependency, ISolutionVariables } from '@esri/templates-common'; /** * Given an array of dependencies and the solution variables hash * extract the item id's of the deployed dependencies. * * The result is used * * @export * @param {IDependency[]} dependencies * @param {ISolutionVariables} variables * @return {*} {string[]} */ export declare function getDeployedDependencies(dependencies: IDependency[], variables: ISolutionVariables): string[];