export declare class Machine {
    id: string;
    name: string;
    type: string;
    status: 'active' | 'maintenance' | 'inactive';
    hourlyRate: number;
    specifications: {
        power: number;
        capacity: number;
        dimensions: {
            width: number;
            height: number;
            depth: number;
        };
    };
    maintenanceHistory: string[];
    createdAt: Date;
    updatedAt: Date;
}
