import * as React from "react"; export interface InfoValueProps { type: "amount" | "percentage" | "status"; value?: string; amount?: number; onClick?(value: string): void; prefix?: string; withBg?: boolean; } declare const InfoValue: ({ type, value, prefix, onClick, amount, withBg, }: InfoValueProps) => React.ReactElement; export default InfoValue;