import type { ReactElement } from 'react'; import type { FieldViewProps } from './FieldView.js'; import type { Field } from '../../schema/index.js'; interface FieldListProps { fields: Field[]; contrast?: boolean; renderField?: (props: FieldViewProps) => ReactElement; fieldExpandLevel?: number; } export declare const FieldList: import("react").NamedExoticComponent; export {};