import { GatedFeature } from '../lib/billing'; /** * ZeroShot FeatureGatePrompt — shown when a feature is not on the user's plan. */ import * as React from "react"; export interface FeatureGatePromptProps extends React.HTMLAttributes { feature: GatedFeature; currentPlan: string; requiredPlan: string; onUpgradeClick?: () => void; /** mailto or billing URL; used when onUpgradeClick is not provided */ upgradeHref?: string; variant?: "inline" | "overlay"; } export declare function FeatureGatePrompt({ feature, currentPlan, requiredPlan, onUpgradeClick, upgradeHref, variant, className, ...props }: FeatureGatePromptProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=feature-gate-prompt.d.ts.map