export declare const BUILDER_TOOLS: {
    readonly READ_CONFIG: 'read_config';
    readonly WRITE_CONFIG: 'write_config';
    readonly PATCH_CONFIG: 'patch_config';
    readonly BUILD_CUSTOM_TOOL: 'build_custom_tool';
    readonly CREATE_SKILLS: 'create_skills';
    readonly CREATE_TASKS: 'create_tasks';
    readonly FINISH_SETUP: 'finish_setup';
    readonly GET_RESOURCE_LOCATOR_OPTIONS: 'get_resource_locator_options';
    readonly LIST_WORKFLOWS: 'list_workflows';
    readonly LIST_INTEGRATION_TYPES: 'list_integration_types';
    readonly LIST_SUB_AGENTS: 'list_sub_agents';
    readonly CALL_AGENT: 'call_agent';
    readonly PUBLISH_AGENT: 'publish_agent';
    readonly UNPUBLISH_AGENT: 'unpublish_agent';
    readonly RESOLVE_INTEGRATION: 'resolve_integration';
    readonly RESOLVE_LLM: 'resolve_llm';
    readonly SEARCH_MCP_SERVERS: 'search_mcp_servers';
    readonly VERIFY_MCP_SERVER: 'verify_mcp_server';
};
export type BuilderToolName = (typeof BUILDER_TOOLS)[keyof typeof BUILDER_TOOLS];
export declare const AGENT_THREAD_PREFIX: {
    readonly TEST: 'test-';
};
