export type Prefix = 'JwtCustomizer'; export declare const prefix: Prefix; /** The type of a custom JWT scenario. */ export declare enum Type { AccessToken = "AccessToken", ClientCredentials = "ClientCredentials" } export type LogKey = `${Prefix}.${Type.AccessToken | Type.ClientCredentials}`;