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