export interface AttributeObject { readonly attribute: string; readonly isDefault?: boolean; readonly displayName?: string; /** PEM encoded public key */ readonly pubKey: string; readonly kasUrl: string; /** The most recent version 1.1.0. */ readonly schemaVersion?: string; } export declare function createAttribute(attribute: string, pubKey: string, kasUrl: string): AttributeObject; //# sourceMappingURL=AttributeObject.d.ts.map