import { IPayioDevice } from '../interfaces/i-device';
import { PayioDeviceChefEntity } from './device-chef.entity';
/** @deprecated use MachineEntity from @arcnetdev/arcnet-payio-interfaces instead */
export declare class PayioDeviceEntity implements IPayioDevice {
    activationKeyId: string | null;
    activationKey: string | null;
    active: boolean;
    chef: PayioDeviceChefEntity | null;
    companyId: string;
    containerId: string;
    createdAt: Date;
    deviceId: string;
    id: string;
    lastAccess: Date;
    name: string;
    sandbox: boolean;
    tags: string[];
    updatedAt: Date;
    constructor(data?: Partial<PayioDeviceEntity>);
}
