import { GoldPrice } from "../../types/gold-price.interface";
import { IPriceModification } from "../../types/identity.interface";
type PriceDataProps = {
    askPriceModification: IPriceModification;
    bidPriceModification: IPriceModification;
    goldPrice: GoldPrice;
};
export declare function PriceHistory({ askPriceModification, bidPriceModification, goldPrice, }: PriceDataProps): import("react/jsx-runtime").JSX.Element;
export {};
