/** * Checks if provided value not exists. * * @param value any value to check it. */ export declare const isNilValue: (value: any) => value is "" | null | undefined; export declare const notNil: (value: T) => value is NonNullable; export declare const isNil: (value: any) => value is null | undefined;