import { IUnifiErrorMeta } from './UnifiError';
import { __Error } from './__Error';
export declare class ClientError extends __Error {
    meta: IUnifiErrorMeta;
    constructor(message?: string | Error, code?: number, exception?: Error | string);
}
