import type { DB } from "../Prostgles"; type PGIndex = { schemaname: string; indexname: string; indexdef: string; escaped_identifier: string; type: string; owner: string; tablename: string; persistence: string; access_method: string; size: string; description: string | null; }; export declare const getPGIndexes: (db: Pick, tableName: string, schema: string) => Promise; export {}; //# sourceMappingURL=getPGIndexes.d.ts.map