import { AnyU8a, Constructor } from '../types'; import U8a from './U8a'; export declare type BitLength = 8 | 16 | 32 | 64 | 128 | 160 | 256 | 512 | 520 | 1024 | 2048; /** * @name U8aFixed * @description * A U8a that manages a a sequence of bytes up to the specified bitLength. Not meant * to be used directly, rather is should be subclassed with the specific lengths. */ export default class U8aFixed extends U8a { constructor(value?: AnyU8a, bitLength?: BitLength); private static decodeU8aFixed; static with(bitLength: BitLength): Constructor; /** * @description Returns the base runtime type name for this instance */ toRawType(): string; }