import { Style } from 'inlines'; export type FieldsProps = { schemaType?: Record; copyObj?: any; changes?: (v: any, name: string) => void; exclude?: string[]; style?: Style; }; export declare const Fields: ({ schemaType, copyObj, changes, exclude, style, }: FieldsProps) => import("react/jsx-runtime").JSX.Element;