export class Gdti96 extends Epc {
    clone(): Gdti96;
    getType(): any;
    fromTagURI(uri: any): Gdti96;
    toTagURI(): string;
    toIdURI(): string;
    toBarcode(): string;
    getTotalBits(): number;
    getHeader(): number;
    getPartition(): number;
    setPartition(value: any): Gdti96;
    getGdti(): string;
    setGdti(gdti: any): Gdti96;
    getCompanyPrefix(): number;
    setCompanyPrefix(value: any): Gdti96;
    getDocumentReference(): number;
    setDocumentReference(value: any): Gdti96;
    getSerial(): number;
    setSerial(value: any): Gdti96;
}
export namespace Gdti96 {
    export const EPC_HEADER: number;
    export const TOTAL_BITS: number;
    export const PARTITION_OFFSET: number;
    export const PARTITION_END: number;
    export const SERIAL_OFFSET: number;
    import SERIAL_END = TOTAL_BITS;
    export { SERIAL_END };
    export const SERIAL_BITS: number;
    export const MAX_SERIAL: number;
    export const TAG_URI: string;
    export function TAG_URI_TEMPLATE(filter: any, company: any, document: any, serial: any): string;
    export function PID_URI_TEMPLATE(company: any, document: any, serial: any): string;
    export const PARTITIONS: Partition[];
}
import { Epc } from '../epc';
import { Partition } from '../partition';
