import { DOMContext } from '../dom/dom-context'; import { Provider as BaseProvider, ProviderOptions as BaseProviderOptions } from '@tempots/render'; export { WithProvider, Provide, Use, UseMany, UseOptional } from './shared'; /** * Represents a provider for a specific type `T`, specialized for DOMContext. * @public */ export type Provider = BaseProvider; /** * Represents an object with provider options, specialized for DOMContext. * @public */ export type ProviderOptions = BaseProviderOptions; export type { ToProviderTypes } from '@tempots/render';