export type EnterprisePlanCardProps = Readonly<{ name: React.ReactNode; description?: React.ReactNode; cta?: React.ReactNode; /** Rendered below `lg` instead of `cta`: the design uses a medium button there. */ ctaMobile?: React.ReactNode; pricingLabel?: React.ReactNode; pricingNote?: React.ReactNode; note?: React.ReactNode; features?: React.ReactNode; /** Rendered below `lg` instead of `features`: the design uses small items there. */ featuresMobile?: React.ReactNode; }> & Omit, "children">; export declare const EnterprisePlanCard: ({ name, description, cta, ctaMobile, pricingLabel, pricingNote, note, features, featuresMobile, className, ...rest }: EnterprisePlanCardProps) => import("react").JSX.Element; //# sourceMappingURL=EnterprisePlanCard.d.ts.map