import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface WidgetPercentageInterfaceProps extends PropsInterface { fluid?: boolean; card?: boolean; title: string; percentage: number; money: string; price: number; } export declare class WidgetPercentage extends PureComponent { constructor(props: any); render(): JSX.Element; }