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 GetStarknetIdPfpVerifierDataParameters = Prettify<{ /** Starknet ID, domain, or address to get the PFP verifier data for. */ idDomainOrAddr: string; /** Optional PFP verifier contract address. */ verifier?: string; }>; export type GetStarknetIdPfpVerifierDataReturnType = bigint[]; export type GetStarknetIdPfpVerifierDataErrorType = Error; export declare function getStarknetIdPfpVerifierData(client: Client, { idDomainOrAddr, verifier }: GetStarknetIdPfpVerifierDataParameters): Promise; //# sourceMappingURL=getStarknetIdPfpVerifierData.d.ts.map