import { Connection, PublicKey } from "@solana/web3.js"; /** * This function can be used to retrieve all the tokenized domains of an owner * @param connection The Solana RPC connection object * @param owner The owner of the tokenized domains * @returns */ export declare const getTokenizedDomains: (connection: Connection, owner: PublicKey) => Promise<{ key: PublicKey; mint: PublicKey; reverse: string | undefined; }[]>;