import React from 'react';
import type { ISchema, IControlProps, IAfterUpdatingCallback, ITriggerUpdate, IControlMapService, IDefaultControls } from './interface';
export interface IBodyProps {
    schema: ISchema;
    loading: boolean;
    prefixClz: string;
    style: React.CSSProperties;
    onFieldsChange: (records: Record<string, any>) => void;
    defaultControlRender?: React.FC<IControlProps>;
    triggerUpdate?: ITriggerUpdate;
    afterUpdatingCb?: IAfterUpdatingCallback;
    controlMapService?: IControlMapService;
    defaultControls?: IDefaultControls;
}
export declare const PanelBody: React.FC<IBodyProps>;
