import { type AiAgent } from '@base/api';
export type UseFetchAgentAttestationParams = {
    agent: AiAgent;
};
export declare const useCopyAgentAttestation: () => {
    isCopyingHash: boolean;
    copyHash: import("@tanstack/react-query").UseMutateFunction<void, Error, {
        agentId: string;
    }, unknown>;
};
