import React from "react"; import { ButtonProps } from "../util/Button"; import { WithTheme } from "../types"; export declare type Prices = { price: string | number; per?: string; }; export declare type PricingCardProps = WithTheme<{ label: string; features: Array; selectedTag?: string; selected?: boolean; buttonText?: string; bottomText?: string; comparison?: string | React.ReactNode; }> & Prices & Pick; export declare function PricingCard({ features, label, price, bottomText, onClick, selected, per, comparison, selectedTag, buttonText, ...props }: PricingCardProps): JSX.Element;