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