import React from 'react';
import type { FieldView } from './FieldView';
import type { Field } from '../../schema';
interface FieldListProps {
    fields: Field[];
    contrast?: boolean;
    renderField?: typeof FieldView;
    fieldExpandLevel?: number;
}
export declare const FieldList: React.NamedExoticComponent<FieldListProps>;
export {};
