import { type ReactNode } from 'react'; import { type NextFeatureFlagsContextProps } from '../NextFeatureFlagsContext'; type Props = NextFeatureFlagsContextProps & { children: ReactNode; }; export declare const NextFeatureFlagsContextProvider: ({ children, ...restProps }: Props) => JSX.Element; export {};