import React from 'react'; declare function LargeScreenComponentSelect(props: ILargeScreenComponentSelect): React.JSX.Element; export default LargeScreenComponentSelect; export interface ILargeScreenComponentSelect { value?: string; list?: IList[]; change?: Function; styles?: React.CSSProperties; noList?: string; layoutList?: string[]; switchIcon?: string | React.ReactNode; } export interface IList { key: string; name: string; imgUrl?: string; }