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