import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Account } from '../../types/account.js'; import type { Chain } from '../../types/chain.js'; import type { Prettify } from '../../types/utils.js'; export type GetStarknetIdNamesParameters = Prettify<{ /** Addresses to get the names for. */ addresses: string[]; /** Optional multicall contract address. */ multicallContract?: string; }>; export type GetStarknetIdNamesReturnType = string[]; export type GetStarknetIdNamesErrorType = Error; export declare function getStarknetIdNames(client: Client, { addresses, multicallContract }: GetStarknetIdNamesParameters): Promise; //# sourceMappingURL=getStarknetIdNames.d.ts.map