export declare function handleOAuthCallbackError({ error, code, state, redirectTo }: {
    error?: string;
    code?: string;
    state?: string;
    redirectTo: string;
}): string | null;
