export interface DecodedPubkey { readonly type: string; readonly value: Uint8Array; } export declare function decodePubkey(data: any): DecodedPubkey | null;