import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface RibbonBoxInterfaceProps extends PropsInterface { label: string | number; } export declare class RibbonBox extends PureComponent { constructor(props: any); render(): JSX.Element; }