import type { Price, Volume } from "../../../../components/charts/lightweight/Candle";
import type { Token, VaultRecent } from "../../../../types";
export interface Detail {
    asset: Token;
    info?: any;
    charts?: {
        volume?: {
            value: number;
            time: number | string;
            type?: string;
        }[];
        value?: {
            value: number;
            time: string;
        }[];
        rate?: {
            price: Price[];
            volume?: Volume[];
        };
    };
    recent?: VaultRecent[];
    responsive?: boolean;
    onBack?: Function;
}
export default function Detail(props: Detail): import("react").JSX.Element;
//# sourceMappingURL=Detail.d.ts.map