import { Bitstring } from './Bitstring.js'; import { BitstringStatusListOption } from './types.js'; declare class StatusList { bitstring: Bitstring; length: number; constructor({ length, buffer }: BitstringStatusListOption); setStatus(index: number, status: boolean): void; getStatus(index: number): boolean; encode(): Promise; static decode({ encodedList }: { encodedList: string; }): Promise; } export { StatusList };