import React from "react"; export interface FluctuationProps extends Omit, "type"> { type: "increase" | "decrease" | "unchanged" | "new" | ""; amount?: string; } export declare const Fluctuation: (props: FluctuationProps) => JSX.Element;