import type { OperationParams, ToolDefinition } from '../utils/godot-runner.js'; export declare const autoloadToolDefinitions: ToolDefinition[]; export declare function handleListAutoloads(args: OperationParams): { content: Array<{ type: "text"; text: string; }>; isError: boolean; } | { content: { type: string; text: string; }[]; }; export declare function handleAddAutoload(args: OperationParams): { content: Array<{ type: "text"; text: string; }>; isError: boolean; } | { content: { type: string; text: string; }[]; }; export declare function handleRemoveAutoload(args: OperationParams): { content: Array<{ type: "text"; text: string; }>; isError: boolean; } | { content: { type: string; text: string; }[]; }; export declare function handleUpdateAutoload(args: OperationParams): { content: Array<{ type: "text"; text: string; }>; isError: boolean; } | { content: { type: string; text: string; }[]; }; //# sourceMappingURL=autoload-tools.d.ts.map