declare function decryptString(cipherText: string, key: string, iv: string): string;
declare function errorHandler(baseUrl: string, error: any): Promise<{
    Class_Name: string;
    Function_Name: string;
    Type: number;
    Inner_Exception: any;
    Message: string;
    Session_ID: string;
    Source_App: string;
    Source_ID: string;
    Source_IP_Address: string;
    Stack_Trace: string;
    Target_Site: string;
}>;
export { decryptString, errorHandler };
