import React from 'react'; import { ProviderConfig } from './types'; type Props = { children?: React.ReactNode; }; /** * @deprecated Use the `useIsDevCycleInitialized` hook to block rendering of your application * until SDK initialization is complete */ export default function asyncWithDVCProvider(config: ProviderConfig): Promise>; export {};