import React from 'react'; export type ChildrenFunction = (isOn: boolean) => React.ReactNode; export interface FeatureProps { featureKey: number; children: ChildrenFunction; } declare function Feature(props: FeatureProps): React.JSX.Element | null; export declare const HackleFeature: typeof Feature; export {};