import { type ChildrenProps } from "../../types/props"; export declare enum FeatureType { SmoothCorners = "smooth-corners" } export interface Feature { readonly name: FeatureType; activate: () => Promise; } export type FeatureFlag = Record; interface FeatureProviderOwnProps { /** * Features to activate. */ features: Feature[]; } export interface FeatureProviderProps extends ChildrenProps, FeatureProviderOwnProps { } export {}; //# sourceMappingURL=FeatureProvider.types.d.ts.map