import { IPagBankDimension } from "./i-dimension";
export interface IPagBankBox {
    weight: number;
    dimensions: IPagBankDimension;
}
