import { IPayioDevice } from '../interfaces/i-device';
import { PayioDeviceChefEntity } from './device-chef.entity';
export declare class PayioDeviceEntity implements IPayioDevice {
    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>);
}
