/** * Hook to check if a feature is available on the current plan * * @param featureSlug - The slug of the feature to check (e.g., 'advanced_analytics') * @returns boolean - Whether the feature is available * * @example * ```tsx * const hasAdvancedAnalytics = useFeature('advanced_analytics') * if (hasAdvancedAnalytics) { * // Show advanced analytics UI * } * ``` */ export declare function useFeature(featureSlug: string): boolean; //# sourceMappingURL=useFeature.d.ts.map