import React from 'react'; export declare type PostHogFeatureProps = React.HTMLProps & { flag: string; children: React.ReactNode | ((payload: any) => React.ReactNode); fallback?: React.ReactNode; match?: string | boolean; visibilityObserverOptions?: IntersectionObserverInit; trackInteraction?: boolean; trackView?: boolean; }; export declare function PostHogFeature({ flag, match, children, fallback, visibilityObserverOptions, trackInteraction, trackView, ...props }: PostHogFeatureProps): JSX.Element | null; //# sourceMappingURL=PostHogFeature.d.ts.map