import { PostgresMetaResult, PostgresIndex } from './types.js'; export default class PostgresMetaIndexes { 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>; retrieve({ id }: { id: number; }): Promise>; retrieve({ name, schema, args, }: { name: string; schema: string; args: string[]; }): Promise>; } //# sourceMappingURL=PostgresMetaIndexes.d.ts.map