import { PricingCardProps } from '@/components/Cards/PricingCard'; import { type SectionHeadingWithoutStylingProps } from '@/components/HeaderFooter/SectionHeading'; export interface PricingSectionProps { sectionHeading: SectionHeadingWithoutStylingProps; cards: PricingCardProps[]; } export declare function PricingSection({ sectionHeading, cards }: PricingSectionProps): import("react/jsx-runtime").JSX.Element;