import { AttributeInfo } from '../internal/attributeInfo'; import { WordsResponse } from './wordsResponse'; export declare const importsMapPublicKeyResponse: { WordsResponse: typeof WordsResponse; }; /** * REST response for RSA public key info. */ export declare class PublicKeyResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets RSA key exponent as Base64 string. */ exponent: string; /** * Gets or sets RSA key modulus as Base64 string. */ modulus: string; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }