import { ResourcesConfig } from '../bridge-types'; type GraphQLConfig = Exclude['GraphQL']; type ModelIntrospectionSchema = Exclude['modelIntrospection'], undefined>; type Model = ModelIntrospectionSchema['models'][string]; /** * Given an introspection schema model, returns all owner fields. * * @param model Model from an introspection schema * @returns List of owner field names */ export declare function resolveOwnerFields(model: Model): string[]; export {};