/** * HTTP owner scope enforcement mode (Issue #664) */ export type OwnerScopeMode = 'strict' | 'warn' | 'off'; /** * @param envValue - MEMENTO_OWNER_SCOPE_MODE * @returns valid mode or default `strict` */ export declare function parseOwnerScopeMode(envValue: string | undefined): OwnerScopeMode; //# sourceMappingURL=owner-scope-mode.d.ts.map