import type { TEnvPreprocess } from './types'; /** Chains preprocess functions in order. Returns undefined early if any step returns undefined. */ export declare function pipePreprocess(firstPreprocess: TEnvPreprocess, ...preprocesses: TEnvPreprocess[]): TEnvPreprocess; /** Treats blank strings and nullish values as undefined. Throws for non-string, non-nullish values. */ export declare function emptyStringAsUndefined(value: unknown): string | undefined; /** Removes one trailing slash from string values. Throws for non-string, non-nullish values. */ export declare function stripTrailingSlash(value: unknown): string | undefined; //# sourceMappingURL=preprocess.d.ts.map