import React from "react"; import { LearnMoreProps } from "../util/LearnMore"; import { WithTheme } from "../types"; declare type PricingEvent = (event: React.MouseEvent, chosenIndex: number) => void; declare type Constraint = string | React.ReactNode; export declare type PricingStaticProps = WithTheme<{ title: string; description: string; headers: Constraint[]; data: [Constraint, ...Constraint[]][]; buttonText?: string; selectedIndex?: number; onLearnMore?: PricingEvent; onClick: PricingEvent; }> & Pick; export declare function PricingStatic({ title, description, headers, data, linkNode, linkText, onLearnMore, onClick, selectedIndex, buttonText, ...props }: PricingStaticProps): JSX.Element; export {};