import { UserError } from "@microsoft/teamsfx-api"; /** * Failed to compile bicep into ARM template */ export declare class CompileBicepError extends UserError { constructor(filePath: string, error: Error); } /** * Failed to deploy arm templates for some reason */ export declare class DeployArmError extends UserError { constructor(deployName: string, resourceGroup: string, error: Error); } /** * Failed to deploy arm templates and get error message failed */ export declare class GetArmDeploymentError extends UserError { constructor(deployName: string, resourceGroup: string, deployError: Error, getError: Error); } /** * Failed to convert ARM deployment result to action output */ export declare class ConvertArmOutputError extends UserError { constructor(outputKey: string); } /** * Failed to download to action output */ export declare class DownloadBicepCliError extends UserError { constructor(url: string, error: Error); } //# sourceMappingURL=arm.d.ts.map