/** Represents an error thrown by the CRT browser shim */
export declare class CrtError extends Error {
    readonly error: any;
    /** @var error - The original error, provided for context. Could be any type, often from underlying libraries */
    constructor(error: any);
}
