import React from 'react';
interface AuthCallbackProps {
    onSuccess?: () => void;
    onError?: (error: string) => void;
}
declare const AuthCallback: React.FC<AuthCallbackProps>;
export default AuthCallback;
//# sourceMappingURL=AuthCallback.d.ts.map