import { Quantity } from './Quantity';
/** Component */
export interface Component {
    /** Component ID */
    id: string;
    /** Name of the component */
    name: string;
    /** Total quantity for the component */
    quantity: Quantity;
    /** Resource ID */
    resourceId: string;
    /** Total price for this component */
    totalPrice: number;
}
//# sourceMappingURL=Component.d.ts.map