/**
 * @sealed
 */
export declare class BareError extends Error {
    name: string;
    readonly issue: string;
    /**
     * Byte offset in the read buffer where the error occurred.
     */
    readonly offset: number;
    constructor(offset: number, issue: string, options?: ErrorOptions);
}
