import { PostgresMetaResult, PostgresColumnPrivileges, PostgresColumnPrivilegesGrant, PostgresColumnPrivilegesRevoke } from './types.js'; export default class PostgresMetaColumnPrivileges { query: (sql: string) => Promise>; constructor(query: (sql: string) => Promise>); list({ includeSystemSchemas, includedSchemas, excludedSchemas, limit, offset, }?: { includeSystemSchemas?: boolean; includedSchemas?: string[]; excludedSchemas?: string[]; limit?: number; offset?: number; }): Promise>; grant(grants: PostgresColumnPrivilegesGrant[]): Promise>; revoke(revokes: PostgresColumnPrivilegesRevoke[]): Promise>; } //# sourceMappingURL=PostgresMetaColumnPrivileges.d.ts.map