import Plan from "./components/Plan/Plan";

export {Plan};

interface PlanAdvantage {
    text: string;
}

export interface PlanProps {
    title: string;
    titleDescription?: String;
    duration?: string;
    highlightText?: string;
    price: string;
    guarantee?: string;
    href: string;
    advantages?: PlanAdvantage[];
}
