export declare type Optional = T | undefined; export declare type Nullable = T | null; export declare type ValueOf = T[keyof T]; export declare const not: (...args: any[]) => any; /** * * @param {Nullable | undefined} expression * @return {boolean} */ export declare const bool: (expression?: T) => boolean; interface IsOdd { (number: number): boolean; } export declare const isOdd: IsOdd; export declare const alwaysTrue: () => true; export {};