/**
 * Lifetime type.
 */
export declare type LifetimeType = 'SINGLETON' | 'TRANSIENT' | 'SCOPED';
/**
 * Lifetime types.
 */
export declare const Lifetime: Record<LifetimeType, LifetimeType>;
