import { AxiosInstance } from "axios";
import { SsoModule } from "./sso.types";
/**
 * Creates the SSO module for the Base44 SDK.
 *
 * @param axios - Axios instance
 * @param appId - Application ID
 * @param userToken - User authentication token
 * @returns SSO module with authentication methods
 * @internal
 */
export declare function createSsoModule(axios: AxiosInstance, appId: string): SsoModule;
