export default interface JavaError {
    cause: {
        getMessage: () => string;
        getStackTrace: () => string[];
        getMessageP: () => string;
        getStackTraceP: () => string[];
    };
}
export declare function isJavaError(obj: any): obj is JavaError;
//# sourceMappingURL=JavaError.d.ts.map