import * as React from "react";
interface TryOnContextType {
    apiKey: string;
    token: string;
}
interface TryOnProviderProps {
    apiKey: string;
    token: string;
    children: React.ReactNode;
}
declare const TryOnProvider: React.FC<TryOnProviderProps>;
export declare const useTryOn: () => TryOnContextType;
export default TryOnProvider;
