import React from 'react'; declare function LargeScreenComponentFiltr(props: ILargeScreenComponentFiltr): React.JSX.Element; export default LargeScreenComponentFiltr; export interface ILargeScreenComponentFiltr { filterList?: IFilterList[]; list?: string[]; showAll?: string; change?: Function; styles?: React.CSSProperties; menuList?: IMenuList[]; value?: string; } export interface IMenuList { label: string; key: string; } export interface IFilterList { type?: string; selected?: string[]; options?: string[]; }