import { UserEntity } from '../../../users';
import { INatipayUser } from '../interfaces/i-user';
export declare class NatipayUserEntity extends UserEntity implements INatipayUser {
    currentCompanyId: string | null;
    currentCompanyName: string | null;
    currentContainerId?: string | null | undefined;
    currentContainerName?: string | null | undefined;
    constructor(data?: Partial<NatipayUserEntity>);
}
