import { type ReactNode } from 'react'; import { VtoClient, type VtoTheme, type StorageAdapter } from './vto-core/index.js'; export interface TryOnConfig { apiUrl: string; apiKey?: string; theme?: VtoTheme; storage?: StorageAdapter; } interface TryOnContextValue { client: VtoClient; config: TryOnConfig; ready: boolean; } export declare function useTryOnContext(): TryOnContextValue; export declare function TryOnProvider({ children, storage, ...config }: TryOnConfig & { children: ReactNode; }): import("react/jsx-runtime").JSX.Element; export {};