import { ViewInvocation } from "../../../models/view"; import { Resolver } from "../../../resolve"; export interface Input { view: ViewInvocation; templateName: string; behaviorUris: string[]; resolver: Resolver; } export interface Output { faces?: any[]; resources?: any[]; templateModification?: any; variationModification?: any; } export declare function run(input: Input): Promise; //# sourceMappingURL=index.d.ts.map