import { FC, ElementType } from "react";
export interface ISignifierProps {
    /** One of icon types */
    type: ElementType;
    /** Number that represent total value */
    value?: number;
    /** Value that represent class names */
    className?: string;
    /** The text that will be displayed on hover in tooltip */
    tooltipText?: string;
    /** ClassName for tooltip if there is one */
    tooltipClassName?: string;
}
export declare const signifierTypes: string[];
export declare const Signifier: FC<ISignifierProps>;
//# sourceMappingURL=Signifier.d.ts.map