export {};

declare global {
    namespace Price {
        /**
         *
         */
        type AmountType = {
            month: number;
            year: number;
        };

        /**
         * comment
         */
        export interface Price1 {
            title: string;
            toogle: Button.Toogle;
            price: {
                title: string;
                description: string;
                button: Button.Button;
                amount: AmountType;
                className?: string;
                note?: string;
                //
                benefits: string[];
                popular?: {
                    text: string;
                    className?: string;
                };
            }[];
            cents?: number;
        }
    }
}
