import type { ReplCodeCommand, ReplOutput } from './repl-main';
import { type Query } from '../../../queries/query';
/** Validates each query against its own type's schema and, on failure, prints a template for that type. */
export declare function validateQueries(output: ReplOutput, queries: readonly Query[]): boolean;
export declare const queryCommand: ReplCodeCommand;
export declare const queryStarCommand: ReplCodeCommand;
