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