export declare enum PropertyKind { NUMERIC = 0, STRING = 1 } export declare class IndexAndKindInformation { private readonly propertyIndex; private bytes; private readonly guidIndex; private readonly propertyKind; constructor(bytes: number[]); getPropertyIndex(): number; getGuidIndex(): number; getPropertyKind(): PropertyKind; }