import { ProviderConfig } from './types'; import React, { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import { DVCCustomDataJSON } from '@devcycle/js-client-sdk'; export declare function withDevCycleProvider(config: ProviderConfig): (WrappedComponent: React.ComponentType) => ForwardRefExoticComponent & RefAttributes>; /** * @deprecated Use withDevCycleProvider instead */ export declare const withDVCProvider: typeof withDevCycleProvider;