import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TableSimpleInterfaceColumn, TableSimpleInterfaceRow } from "../Table"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; export interface ModuleRatingTableInterfaceProps extends PropsInterface, TitleSubtitleInterface { fluid?: boolean; card?: boolean; columns: TableSimpleInterfaceColumn[]; rows: TableSimpleInterfaceRow[]; styleContent?: any; stars: number; description: string; } export declare class ModuleRatingTable extends PureComponent { constructor(props: any); render(): JSX.Element; }