import * as React from 'react';
import { FieldType } from 'react-openfin';
interface IProps {
    _type: FieldType;
    _label: string;
    _props?: any;
    _custom?: any;
    value: any;
    onChange?: (value: any) => void;
}
declare const ConfigFieldComp: React.FunctionComponent<IProps>;
export default ConfigFieldComp;
