import { DVCVariableValue } from '@devcycle/js-client-sdk'; import { VariableKey } from '@devcycle/types'; type CommonProps = { children: React.ReactNode; variableKey: VariableKey; }; type RenderIfEnabledProps = CommonProps | (CommonProps & { targetValue: T; defaultValue: T; }); export declare const RenderIfEnabled: (props: RenderIfEnabledProps) => React.ReactNode; export {};