/// export interface UsernamePayload { value: string; } export declare class UsernameAttribute { private value; static createBlank(): UsernameAttribute; constructor(value: string); readonly type: number; readonly payload: UsernamePayload; toBuffer(): Buffer; loadBuffer($attr: Buffer): boolean; }