import * as React from "react"; import { FeatureFlag, Feature } from "../models/FeatureFlagsModel"; interface OwnProps { children: React.ReactElement; id: FeatureFlag; disabledComponent?: React.ReactElement; } interface StateProps { feature?: Feature; } type FeatureFlagGuardProps = OwnProps & StateProps; export declare class FeatureFlagGuardComponent extends React.Component { render(): React.ReactElement> & React.ReactNode; } export declare const FeatureFlagGuard: import("react-redux").ConnectedComponent & OwnProps & StateProps, "feature"> & OwnProps>; export {};