/**
 * Options for claim polling
 */
export interface ClaimPollingOptions {
    verbose?: boolean;
    maxAttempts?: number;
    pollInterval?: number;
}
/**
 * Poll for agent claim status
 *
 * Polls the KTA API to check if an agent has been claimed.
 * Returns true when claimed, false if timeout or interrupted.
 *
 * @param agentName - The agent's name (slug) to check
 * @param did - The agent's DID
 * @param endpoint - API endpoint URL (default: https://knowthat.ai)
 * @param options - Polling options
 */
export declare function pollForClaimStatus(agentName: string, did: string, endpoint?: string, options?: ClaimPollingOptions): Promise<boolean>;
//# sourceMappingURL=claim-polling.d.ts.map