import { UserProfile } from '@loopback/security'; import { StoreOptions } from 'kvs'; import { OidcConfiguration } from './types/oidc.types'; export * from './types/oidc.types'; export declare const OidcDataSourceName = "OidcDB"; export declare const OidcDefaultPath = "/oidc"; export interface OidpConfig { baseUrl: string; path?: string; oidc?: OidcConfiguration; store?: StoreOptions; } /** * The minimum set of attributes that describe a user. */ export interface AccountProfile extends UserProfile { phone?: string; }