import { type TemperatureUnitState } from './state.svelte'; interface Props { /** State to control; defaults to the nearest context or the shared singleton. */ state?: TemperatureUnitState; /** Accessible label for the control. */ label?: string; } /** An accessible °C/°F switch that flips and persists the reader's unit preference so every Temperature updates. Pairs with Temperature. */ declare const TemperatureToggle: import("svelte").Component; type TemperatureToggle = ReturnType; export default TemperatureToggle;