export declare type SSOService = "github" | "google" | "azure"; interface Error { message: string; status: string; } export declare const useSSO: (authServiceUrl: string) => readonly [(service: SSOService) => void, boolean, Error | null, {}]; export {};