import { Address } from '../address/address.entity';
import { User } from '../auth/user.entity';
import { EquipmentType } from './equipment-type.entity';
export declare class Equipment {
    id: number;
    apodo: string;
    type: EquipmentType;
    brand: string;
    model: string;
    serial_number: string;
    address: Address;
    location: string;
    client: User;
}
