import React from 'react'; declare function FieldTokenFactory(fieldTypeDisplay: ReturnType, fieldColors?: ReturnType): ({ type }: { type: any; }) => React.JSX.Element; declare namespace FieldTokenFactory { var deps: (typeof getFieldTypes | typeof getFieldColors)[]; } declare function getFieldTypes(): { boolean: { label: string; color: string; }; date: { label: string; color: string; }; geojson: { label: string; color: string; }; integer: { label: string; color: string; }; real: { label: string; color: string; }; string: { label: string; color: string; }; timestamp: { label: string; color: string; }; point: { label: string; color: string; }; }; declare function getFieldColors(): { default: string; }; export default FieldTokenFactory;