import * as React from 'react'; /** withModalProvider * * withModalProvider will wrapp a component with the modal context, * it is not needed when using the original SDK useModal functionality * because the app component is already wrapped with this component. * * Componenet {React.FC} is the component that will be wrapped with * the modal provider context. */ export declare const withModalProvider: (Component: React.ComponentType) => React.FC;