import { type RegisteredTool } from '../../mcp/server.ts'; import type { ReclaimOldClient } from '../client.ts'; /** * Mint a brand-new eth-keypair APP (as opposed to authenticating as a * dashboard user). `appId` is the eth address, `appSecret` the raw private * key — this is the pair `@reclaimprotocol/js-sdk`'s `ReclaimProofRequest.init` * expects. No auth required: the app starts unassociated (`creatorUid: null`) * and sandboxed (`sandboxLimit: 100` sessions). Use `link_app_to_account` to * attach it to your dashboard account, or `check_app_status` to inspect it. */ export declare function issueAppCredentialsTool(client: ReclaimOldClient): RegisteredTool;