import type { FC } from 'react';
import './index.less';
export interface fieldChangeProps {
    value: string;
    fieldKey: string | number;
    index: number;
}
export interface fieldValueProps {
    attrCode: string;
    screenCondition: string;
    screenInput?: string | number;
    screenConnection?: any;
    formType: string;
    appId: string;
    busiObjectId: string;
    isJson?: '1' | '0';
}
declare const FilterAttr: FC<any>;
export default FilterAttr;
