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