/**
 * ./src/classes/users.ts
 * penguins-eggs v.10.0.0 / ecmascript 2020
 * author: Piero Proietti
 * email: piero.proietti@gmail.com
 * license: MIT
 */
/**
 *
 */
export default class Users {
    gecos: string;
    gid: string;
    hasHome: boolean;
    home: string;
    login: string;
    password: string;
    saveIt: boolean;
    shell: string;
    size: number;
    uid: string;
    constructor(login: string, password: string, uid: string, gid: string, gecos: string, home: string, shell: string);
    /**
     * getSize
     * @param verbose
     */
    getValues(): Promise<void>;
}
