import { IsAny } from './IsAny'; import { something } from './something'; import { nothing } from './nothing'; export declare type IsNothing = IsAny extends true ? false : T extends something ? false : true; export declare function isNothing(maybe: any): maybe is nothing; //# sourceMappingURL=IsNothing.d.ts.map