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