export declare const Barname: {
    random(byteCount: number): string;
    string(bytes: Uint8Array, options?: {
        wordsPerGroup?: number;
    }): string;
    bytes(string: string): Uint8Array<ArrayBuffer>;
};
