import { DeviceSchema } from './deviceSchema.js';
export interface Product {
    id: string;
    name: string;
    model: string;
    category: string;
    schema: DeviceSchema[];
}
//# sourceMappingURL=product.d.ts.map