import React from 'react'; interface TProps { flexValue?: any; config?: any; setFlexValue?: Function; } interface TState { } declare class FlexPicker extends React.Component { static propTypes: {}; static defaultProps: { flexValue: {}; setFlexValue: () => void; config: {}; }; state: TState; componentDidMount(): void; render(): JSX.Element; } export default FlexPicker;