import Field from '../dataModel/field';
import { Context } from './interface';
declare const recursiveCreateType: (fields: Record<string, Field>, context: Context) => string[];
declare const parseRelationConfig: (relationConfig: any) => Record<string, string>;
export { parseRelationConfig, recursiveCreateType };
