import { type Openfort } from '@openfort/openfort-js'; import type React from 'react'; import { type PropsWithChildren } from 'react'; import type { ConnectCallbackProps } from './connectCallbackTypes'; import type { OpenfortStore } from './store'; /** * Public return type for useOpenfortCore(). Matches the store shape. * Kept as a named type for backward compatibility with consumers that import it. */ export type OpenfortCoreContextValue = OpenfortStore; type CoreOpenfortProviderProps = PropsWithChildren<{ openfortConfig: ConstructorParameters[0]; } & ConnectCallbackProps>; export declare const CoreOpenfortProvider: React.FC; export {};