import { CookieConfig, OidcConfig } from '@descope/web-js-sdk'; import type { CustomStorage, ILogger } from '@descope/web-component'; export declare class DescopeAuthConfig { projectId: string; baseUrl?: string; baseStaticUrl?: string; baseCdnUrl?: string; persistTokens?: boolean; autoRefresh?: boolean; sessionTokenViaCookie?: CookieConfig; oidcConfig?: OidcConfig; storeLastAuthenticatedUser?: boolean; pathsToIntercept?: string[]; customStorage?: CustomStorage; } export type { ILogger };