import { LinkProps } from '@/common-types'; export interface PricingCardProps { title: string; description: string; features: string[]; price?: string; duration?: string; button?: LinkProps; } export declare function PricingCard({ title, description, features, price, duration, button, }: PricingCardProps): import("react/jsx-runtime").JSX.Element;