export declare class DeviceGlobalId {
    id: number;
    constructor(id: number);
    /**
     *
     * This class represents a Device ID
     * It helps converts a device id like 0x20 to a string slug of
     * the form:
     * d--XXXX-XXXX-XXXX-XXXX
     *
     * The slug always has the hex string in lowercase.
     *
     */
    toString(): string;
}
