import { ReactNode } from 'react'; interface FeaturePlaceholderProps { feature: string; icon: ReactNode; benefits: string[]; } /** * FeaturePlaceholder - Display a placeholder for features that are not yet implemented * * Used for "fake door" testing to validate user interest in features * before actually implementing them. * * @example * ```tsx * } * benefits={['Real-time dashboards', 'Custom reports', 'Export to PDF']} * /> * ``` */ export declare function FeaturePlaceholder({ feature, icon, benefits }: FeaturePlaceholderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FeaturePlaceholder.d.ts.map