import type { ReactNode } from 'react'; export interface PricingDarkProps { headline?: string; subheadline?: string; className?: string; children?: ReactNode; } export declare function PricingDark({ headline, subheadline, className, children, }: PricingDarkProps): import("react/jsx-runtime").JSX.Element;