import type { nothing } from 'lit'; /** * A variant of `if-defined` which stops rendering if the given value is `null` in addition to `undefined`. * * @public * @param The value. */ export declare function ifNonNull(value: T): typeof nothing | NonNullable; //# sourceMappingURL=IfNonNull.d.ts.map