/// <reference types="react" />
import { ContentFieldsBase } from './content-fields-base';
import { HtAiAgentNode } from './hubtype-fields/ai-agent';
export declare class FlowAiAgent extends ContentFieldsBase {
    code: string;
    name: string;
    instructions: string;
    text: string;
    static fromHubtypeCMS(component: HtAiAgentNode): FlowAiAgent;
    toBotonic(id: string): JSX.Element;
}
