import { Program } from "@coral-xyz/anchor";
import { PublicKey, TransactionInstruction } from "@solana/web3.js";
import { AgentsProgram } from "../idl/types";
export declare function createAgentIx(params: {
    payer: PublicKey;
    program: Program<AgentsProgram>;
    agentUuid: number[];
    agentAddress: PublicKey;
    agentState: PublicKey;
}): Promise<TransactionInstruction>;
