import type { AppProps as NextJsAppProps } from 'next/app'; import hoistNonReactStatics from 'hoist-non-react-statics'; import { SSRProps } from './types'; import React from 'react'; import { DevCycleOptions } from '@devcycle/js-client-sdk'; import { ConfigSource } from '@devcycle/types'; type DevCycleNextOptions = Pick & { configSource?: ConfigSource; }; export declare const appWithDevCycle: (WrappedComponent: React.ComponentType, additionalOptions?: DevCycleNextOptions) => ((props: Props & { pageProps: Props["pageProps"] & SSRProps; }) => import("react/jsx-runtime").JSX.Element) & hoistNonReactStatics.NonReactStatics, {}>; export {};