import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapUserInformation: {};
/**
 * DTO for user information.
 */
export declare class UserInformation implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets user address.
     */
    address: string;
    /**
     * Gets or sets user initials.
     */
    initials: string;
    /**
     * Gets or sets user name.
     */
    name: string;
    constructor(init?: Partial<UserInformation>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
