export declare function expect(value: T | undefined | null, message: string): T; export declare function assert(predicate: boolean, message: string): asserts predicate; export declare const isError: (value: unknown) => value is Error;