/** * Error thrown when trying to read more bytes than available. * * The part that was read is available in the `part` property. */ export declare class PartialReadError extends RangeError { /** the part that was read */ readonly part: Uint8Array; constructor( /** the part that was read */ part: Uint8Array, expectedLength: number); }