import { type DatabaseClient } from "../../../../core/databaseClient.js"; interface PrimaryKey { dirty: boolean; keys: Array<{ name: string; type: string; }>; schema: string; table: string; tableId: string; } export declare function fetchPrimaryKeys(client: DatabaseClient, schemas: Array): Promise; export {};