/** Assert a value is neither null nor undefined. Throws if it is. * Useful after optional chaining and indexed access when the * control flow guarantees the value exists but TypeScript can't * prove it (e.g. after a check on a related field). */ export declare function expectDefined(value: T | null | undefined, label?: string): T; //# sourceMappingURL=expect-defined.d.ts.map