import { Connection, PublicKey } from "@solana/web3.js"; export declare class ReverseTwitterRegistryState { twitterRegistryKey: Uint8Array; twitterHandle: string; static schema: { struct: { twitterRegistryKey: { array: { type: string; len: number; }; }; twitterHandle: string; }; }; constructor(obj: { twitterRegistryKey: Uint8Array; twitterHandle: string; }); static retrieve(connection: Connection, reverseTwitterAccountKey: PublicKey): Promise; }