import type { really_any } from '../utils/organization/really_any';
/**
 * This error type indicates that somewhere in the code non-Error object was thrown and it was wrapped into the `WrappedError`
 *
 * @public exported from `@promptbook/core`
 */
export declare class WrappedError extends Error {
    readonly name = "WrappedError";
    constructor(whatWasThrown: really_any);
}
