import { KmipStruct } from "../json/KmipStruct"; import { AttributeReference } from "../types/AttributeReference"; export declare class GetAttributes implements KmipStruct { private _unique_identifier?; private _attribute_references?; constructor(unique_identifier?: string, attribute_references?: AttributeReference[]); get unique_identifier(): string | undefined; set unique_identifier(value: string | undefined); get attribute_references(): AttributeReference[] | undefined; set attribute_references(value: AttributeReference[] | undefined); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=GetAttributes.d.ts.map