import type { FC } from 'react';
import './index.less';
interface InParamsProps {
    fields: any;
    type: string;
    onValuesChange: any;
    apiObject: any;
    value: any;
}
declare const InParams: FC<InParamsProps>;
export default InParams;
