export declare function not(
    value: any
): value is false | "" | 0 | null | undefined;

export default not;
