import { LinePhoneAssociableConfiguredLines } from './LinePhoneAssociableConfiguredLines';
import { ProtocolEnum } from './ProtocolEnum';
/** Informations related to associable phone capabilities */
export interface LinePhoneAssociable {
    /** Current lines configured on the phone */
    associatedLines: LinePhoneAssociableConfiguredLines[];
    /** Brand name of the phone */
    brand: string;
    /** Maximum quantity of lines managed by the phone */
    maxLines: number;
    /** Phone protocol */
    protocol: ProtocolEnum;
}
//# sourceMappingURL=LinePhoneAssociable.d.ts.map