import { PRICING_TABS_MAX } from "@photoroom/shared/www"; export { PRICING_TABS_MAX }; export type PricingTab = Readonly<{ id: string; label: React.ReactNode; hero?: React.ReactNode; content: React.ReactNode; linkProps?: React.ComponentProps<"a"> & Record<`data-${string}`, string | undefined>; panelProps?: React.ComponentProps<"div"> & Record<`data-${string}`, string | undefined>; }>; export type PricingTabsProps = Readonly<{ title?: React.ReactNode; tabs: readonly PricingTab[]; forceShowAll?: boolean; }> & Omit, "title">; export declare const PricingTabs: ({ title, tabs, forceShowAll, className, ...rest }: PricingTabsProps) => import("react").JSX.Element; //# sourceMappingURL=PricingTabs.d.ts.map