/**
 * Jean Memory React SDK - Sign In With Jean Component
 * OAuth 2.1 PKCE authentication flow
 */
import React from 'react';
interface SignInWithJeanProps {
    onSuccess: (user: any) => void;
    onError?: (error: Error) => void;
    apiKey?: string;
    className?: string;
    children?: React.ReactNode;
}
export declare function SignInWithJean({ onSuccess, onError, apiKey, className, children }: SignInWithJeanProps): import("react/jsx-runtime").JSX.Element;
export {};
