/**
 * Class model that represents an application user
 */
export declare class User {
    /**
     * Name of the user
     */
    username: string;
    /**
     * List of roles
     */
    roles: string[];
}
//# sourceMappingURL=user.d.ts.map