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 ifNonEmpty(value: string | null | undefined): typeof nothing | string; //# sourceMappingURL=IfNonEmpty.d.ts.map