import React from 'react'; import '../g.scss'; declare function ListBy2(props: IListBy2): React.JSX.Element; export default ListBy2; export interface IListBy2 { list?: IList[]; key?: string; attrKey?: string; wrapStyle?: React.CSSProperties; change?: Function; } export interface IList { key?: string; value?: boolean; title?: string; }