/**
* SQLite 메타 명령어 도구
* .tables, .schema, .indexes, .pragma 등의 SQLite 메타 명령어를 구현합니다.
*/
import type { MetaCommandInput } from '../types/schemas.js';
import type { ToolDefinition, ToolResult } from '../types/index.js';
/**
* 메타 명령어 도구 정의
*/
export declare const metaCommandTool: ToolDefinition;
/**
* 메타 명령어 실행 함수 (MCP 서버에서 직접 호출용)
*/
export declare function executeMetaCommand(params: MetaCommandInput): Promise<ToolResult>;
//# sourceMappingURL=metaCommands.d.ts.map