import { Unit } from '../base/unit'; declare global { interface HTMLElementTagNameMap { 'nimble-unit-byte': UnitByte; } } /** * Element that provides a unit scale for conversion of bytes */ export declare class UnitByte extends Unit { /** * Use binary (base 1024 scale with binary prefixes) instead of * the default of decimal (base 1000 scale with metric prefixes) */ binary: boolean; constructor(); private binaryChanged; } export declare const unitByteTag = "nimble-unit-byte";