/** @description Basic structure for dimensions */
export interface Dimensions {
    length?: number;
    width?: number;
    height?: number;
}
