9 lines
311 B
TypeScript
9 lines
311 B
TypeScript
import React from 'react';
|
|
import { Feature } from '../../../types/Feature';
|
|
declare const FeaturesProvider: React.FC<{
|
|
features: Record<string, Feature>;
|
|
children: React.ReactNode;
|
|
}>;
|
|
declare const useFeatures: <FD2 extends Record<string, Feature>>() => any;
|
|
export { FeaturesProvider, useFeatures };
|