import type { MCPTool } from "../types/tool.js";
export default class ListViewsTool implements MCPTool {
    name: string;
    description: string;
    inputSchema: {
        type: "object";
        properties: {
            schemaName: {
                type: "string";
                description: string;
            };
        };
        required: never[];
    };
    execute(input: Record<string, unknown>): Promise<string>;
    private parseInput;
}
//# sourceMappingURL=list-views.d.ts.map