export declare class CreateBugADOHelper {
    private azureUrl;
    private adoProjectName;
    private moduleUserMapping;
    constructor(azureUrl: string, adoProjectName: string, initialMapping?: Record<string, string>);
    private decryptPAT;
    createBugInADO(moduleName: string, bugTitle: string, bugDescription: string, steps: {
        step: string;
        status: string;
    }[], failedStep: string, attachmentDirPath: string, userDetails: {
        iv: string;
        encryptedData: string;
        key: string;
    }): Promise<void>;
    private uploadAttachment;
}
