import { Registry } from "../types"; /** * Method is voluntarly made async so it can be replaced by a backend call once implemented */ export declare const getRegistries: () => Promise; /** * Get an array of registries compatible with a given domain * * @param {string} domain * @returns {Promise} */ export declare const getRegistriesForDomain: (domain: string) => Promise; /** * Get an array of registries compatible with a given address * * @param {string} address * @returns {Promise} */ export declare const getRegistriesForAddress: (address: string) => Promise; //# sourceMappingURL=index.d.ts.map