import { Supply, SupplyType } from './api-supplies.interfaces';
export type SuppliesOut = {
    supplies: Supply[];
    total: number;
};
export type SupplyIn = {
    supplyTypeId: number;
    name: string;
    description: string;
    countryId: number;
    enabledForDropoff: boolean;
    supplyPacking: {
        value: number;
        weight: number;
        height: number;
        depth: number;
        width: number;
    };
};
export type SupplyOut = {
    supply: Supply;
};
export type SupplyTypesOut = {
    supplyTypes: SupplyType[];
    total: number;
};
