import type { Account, Chain, Client, Hex, Transport } from "viem"; import type { PasskeyServerRpcSchema } from "../../types/passkeyServer.js"; export type GetCredentialsParameters = { context?: Record; }; export type GetCredentialsReturnType = { id: string; publicKey: Hex; }[]; export declare const getCredentials: (client: Client, args?: GetCredentialsParameters | undefined) => Promise; //# sourceMappingURL=getCredentials.d.ts.map