1 | import { CleanOptions, SpecsOutput } from './types';
|
2 | export declare const testOnlySymbol: unique symbol;
|
3 | /**
|
4 | * Perform the central validation/sanitization logic on the full environment object
|
5 | */
|
6 | export declare function getSanitizedEnv<S>(environment: unknown, specs: S, options?: CleanOptions<SpecsOutput<S>>): SpecsOutput<S>;
|