import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleOInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; export interface WidgetSparkLineInterfaceProps extends PropsInterface, TitleSubtitleOInterface { fluid?: boolean; card?: boolean; } export declare class WidgetSparkLine extends PureComponent { constructor(props: any); render(): JSX.Element; }