import React from 'react'; export declare type SelectGenParams = { list?: any[]; selectProps: Record; inject: Map>; }; interface Props { value?: string | number; defaultValue?: string | number; style?: React.CSSProperties; fetchDataSource?: () => Promise; } declare const selectGen: (params: SelectGenParams) => React.MemoExoticComponent<(props: Props) => JSX.Element>; export default selectGen;