type inferType = string | number | boolean | null | undefined | object; /** * Parse a value and run it through a transformer for custom behavior. */ export declare function enval(value: unknown, transformer: (inferred: T, raw: unknown) => R): R; /** * Parse a value into a typed representation based on env-style input. */ export declare function enval(value: unknown): T; export {}; //# sourceMappingURL=index.d.ts.map