import { StarnameClient } from "../starnameClient"; import { Validator } from "../types/delegationValidator"; import { Escrow } from "../types/escrow"; declare const reverseLookup: (client: StarnameClient, address: string) => Promise; declare const getValidator: (client: StarnameClient, address: string) => Promise; declare const getEscrow: (client: StarnameClient, id: string) => Promise; export { reverseLookup, getValidator, getEscrow };