import { type TemperatureUnit } from './units'; /** Read the unit from the `` attribute, or null if unset/invalid. */ export declare function readUnitAttribute(attribute?: string): TemperatureUnit | null; /** Write the unit to the `` attribute (no-op during SSR). */ export declare function writeUnitAttribute(unit: TemperatureUnit, attribute?: string): void;