export interface deployArgs { subscriptionId: string; resourceGroupName: string; templates: templateArgs[]; bicepCliVersion?: string; } export interface templateArgs { path: string; parameters?: string; deploymentName: string; } export type deploymentOutput = Record; //# sourceMappingURL=interface.d.ts.map