/** * Gets the primary key field name for a specified collection * @param collection The collection name to get the primary key for * @param schema The collections schema object containing field definitions * @returns The name of the primary key field or null if not found */ export declare function getPrimaryKeyField(collection: string, schema: Record>): string | null;