import { Field } from '../types'; import { FieldFilter } from './types'; export declare const toFieldFilter: ({ id: fieldId, toLabel: toFieldLabel, filter: filterDef, }: Field) => FieldFilter; export declare const fromI18nEnum: (i18nEnum: { [k: string]: (t: (k: string) => string) => string; }) => { id: string; toLabel: (t: (k: string) => string) => string; }[];