import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleOInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; export interface WidgetListHorizontalInterfaceProps extends PropsInterface { fluid?: boolean; card?: boolean; list: WidgetListHorizontalInterfacePropsList[]; data?: (item: any, index: any) => any; center?: boolean; } export interface WidgetListHorizontalInterfacePropsList extends TitleSubtitleOInterface { } export declare class WidgetListHorizontal extends PureComponent { constructor(props: any); render(): JSX.Element; }