import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface WidgetOverallRatingInterfaceProps extends PropsInterface { fluid?: boolean; card?: boolean; stars: number; description: string; } export declare class WidgetOverallRating extends PureComponent { constructor(props: any); render(): JSX.Element; }