import type { Client, FieldDef } from 'pg'; export type MetaCommandResult = { type: 'query'; fields: FieldDef[]; rows: Record[]; rowCount: number | null; command: string; } | { type: 'quit'; } | { type: 'help'; text: string; } | { type: 'unknown'; command: string; }; export declare const executeMetaCommand: (input: string, client: Client) => Promise; //# sourceMappingURL=meta-commands.d.ts.map