import { ReactNode } from 'react';
export declare type FeatureFlagComponentProps = {
    name: string;
    defaultValue?: boolean;
    invert?: boolean;
    children: ReactNode;
};
declare const FeatureFlag: ({ name, defaultValue, invert, children }: FeatureFlagComponentProps) => JSX.Element;
export default FeatureFlag;
