import React from "react";
import { PlanProps } from "../../index";
import "./style.css";
interface IPlanProps {
    Plans: PlanProps[];
    Currency: string;
    BackColor?: string;
    Color?: string;
}
declare const Plan: React.FC<IPlanProps>;
export default Plan;
