import { _Transaction, _IStatement, _IStatementExecutor } from '../../interfaces-private'; import { CommentStatement } from 'pgsql-ast-parser'; import { ExecHelper } from '../exec-utils'; export declare class Comment extends ExecHelper implements _IStatementExecutor { private p; private schema; constructor({ schema }: _IStatement, p: CommentStatement); execute(t: _Transaction): { result: { command: string; fields: never[]; rowCount: number; rows: never[]; location: import("pgsql-ast-parser").NodeLocation; }; state: _Transaction; }; } //# sourceMappingURL=comment.d.ts.map