import EndUserObject from './obj.end-user';
export default class EndUser {
    private $user;
    constructor(meta: EndUserObject);
    /**
     * The UUID referencing the user's record stored in Flatfile
     */
    readonly id: string;
    /**
     * Your internal ID reference for this user (required)
     */
    readonly userId: string;
    /**
     * The user's full name if you provided it
     */
    readonly name: string | undefined;
    /**
     * The user's email if you provided it
     */
    readonly email: string | undefined;
    /**
     * The company name the user is currently operating under
     */
    readonly companyName: string | undefined;
    /**
     * The company name the user is currently operating under
     */
    readonly companyId: string | undefined;
}
