/** * A variant of `lit/directives/if-defined` which stops rendering if the given value is * not a number in addition to `null`/`undefined`. * * For AttributeParts, sets the attribute if the value is defined and a number, and removes * the attribute if the value is undefined not a number. * * For other part types, this directive is a no-op. */ export declare function ifNumber(value: number | null | undefined): number | typeof import("lit").nothing; //# sourceMappingURL=ifNumber.d.ts.map