import type { Farm, Token, Vault } from "../../types";
export interface Detail {
    asset?: Token;
    vault?: Vault & {
        info?: any;
        recent?: any;
        charts?: {
            rate: any;
            value: any;
            volume: any;
        };
        [x: string]: any;
    };
    farm?: Farm & {
        info?: any;
        recent?: any;
        charts?: {
            apr: any;
            staking: any;
        };
        [x: string]: any;
    };
    onBack?: Function;
    responsive?: boolean;
}
export default function Detail(props: Detail): import("react").JSX.Element;
//# sourceMappingURL=Detail.d.ts.map