import { ResourcesConfig } from '../bridge-types'; type GraphQLConfig = Exclude['GraphQL']; type ModelIntrospectionSchema = Exclude['modelIntrospection'], undefined>; type SchemaModel = ModelIntrospectionSchema['models'][string]; /** * Given a SchemaModel from a ModelIntrospectionSchema, returns the primary key * as an array of field names. * * @param model The model object * @returns Array of field names */ export declare function resolvePKFields(model: SchemaModel): string[]; export {};