export declare const ssoQueryKeys: {
    all: (userId?: string) => readonly ["auth", "sso", string | null];
    providers: {
        all: (userId?: string) => readonly ["auth", "sso", string | null, "providers"];
        detail: (userId: string | undefined, providerId: string | undefined) => readonly ["auth", "sso", string | null, "providers", "detail", string | null];
        list: (userId?: string) => readonly ["auth", "sso", string | null, "providers", "list"];
    };
};
