import type { ContextExProviderProps } from '@ariestools/sdk-react/shared'; import type { Context, PropsWithChildren } from 'react'; import React from 'react'; import type { ResolvedDivinerState } from './State.js'; /** Props for {@link ResolvedDivinerProvider}. */ export interface DivinerProviderProps extends ContextExProviderProps, PropsWithChildren { context: Context>; diviner?: D; } /** Provides a resolved diviner instance through the supplied context. */ export declare const ResolvedDivinerProvider: ({ diviner: divinerProp, required, children, context: Context, }: DivinerProviderProps) => React.JSX.Element; //# sourceMappingURL=Provider.d.ts.map