import React, { ReactNode } from 'react'; import { ActionListKeyType, AllowedFeatureContextValueType } from './types'; declare type PackageFeatureContextType = { allowedFeature: AllowedFeatureContextValueType; PackageFeatureList: Array; }; declare type PackageFeatureProviderProps = { children: ReactNode; }; declare const PackageFeatureContext: React.Context; export declare const PackageFeatureProvider: ({ children, }: PackageFeatureProviderProps) => JSX.Element; export default PackageFeatureContext;