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 GetStarknetIdUserDataParameters = Prettify<{ /** Starknet ID, domain, or address to get the user data for. */ idDomainOrAddr: string; /** Field to retrieve from user data. */ field: string; }>; export type GetStarknetIdUserDataReturnType = bigint; export type GetStarknetIdUserDataErrorType = Error; export declare function getStarknetIdUserData(client: Client, { idDomainOrAddr, field }: GetStarknetIdUserDataParameters): Promise; //# sourceMappingURL=getStarknetIdUserData.d.ts.map