/**
 * CustomExceptions must extend this Exception
 */
export declare abstract class CustomException extends Error {
    innerException: Error;
    type: string;
    constructor(message: string, ex?: Error);
}
