/**
 * Represents a container for accessory information that is added as an accessory information service to the accessory.
 */
export declare class AccessoryInformation {
    /**
     * Gets or sets the manufacturer.
     */
    manufacturer: string | null;
    /**
     * Gets or sets the manufacturer.
     */
    model: string | null;
    /**
     * Gets or sets the manufacturer.
     */
    serialNumber: string | null;
    /**
     * Gets or sets the manufacturer.
     */
    firmwareRevision: string | null;
    /**
     * Gets or sets the manufacturer.
     */
    hardwareRevision: string | null;
}
