import { Buffer } from 'buffer/';
export declare class IsobusName {
    private readonly nameString;
    private readonly dataBuffer;
    constructor(isobusname: string | Buffer);
    toString(): string;
    getDeviceClass(): number;
    getDeviceClassLabel(): string;
    getManufacturerCode(): number;
    getManufacturerCodeLabel(): string;
    getIdentityNumber(): number;
    getEcuInstance(): number;
    getFunctionInstance(): number;
    getFunction(): number;
    getFunctionLabel(): string;
    getDeviceClassInstance(): number;
    getIndustryGroup(): number;
    getIndustryGroupLabel(): string;
    getSelfConfigurableAddress(): number;
    getSelfConfigurableAddressLabel(): string;
    getIsoNameString(): string;
    private getByte;
}
