export interface History {
    data?: MarketHistory[];
    view?: number;
}
export interface MarketHistory {
    time: number | string;
    type: "buy" | "sell";
    price: number | string;
    quantity: number | string;
}
export default function History(props: History): import("react").JSX.Element;
//# sourceMappingURL=History.d.ts.map