import { Accessory } from "./Accessory";
/**
 * Bridge is a special type of HomeKit Accessory that hosts other Accessories "behind" it. This way you
 * can simply publish() the Bridge (with a single HAPServer on a single port) and all bridged Accessories
 * will be hosted automatically, instead of needed to publish() every single Accessory as a separate server.
 *
 * @group Accessory
 */
export declare class Bridge extends Accessory {
    constructor(displayName: string, UUID: string);
}
//# sourceMappingURL=Bridge.d.ts.map