import 'codeceptjs'; /** * Class is used to change OU details in eProc and eInvoice */ export declare class DewOUChange { /** * It will used to change ou details of eProc *@param {String} companyName *@param {String} businessUnit *@param {String} location */ static changeEprocOU(companyName: string, businessUnit: string, location: string): Promise; /** * Will be used to change the ou details of invoice *@param {String} companyName *@param {String} businessUnit *@param {String} location */ static changeEinvoiceOU(companyName: string, businessUnit: string, location: string): Promise; }