import { CollectionPayment, ReportExternalShipment, Shipment } from './api-reports.interfaces';
export type CollectionPaymentsOut = {
    collection_payments: CollectionPayment[];
    total: number;
};
export type ShipmentsReportOut = {
    shipments: Shipment[];
    total: number;
};
export type ExistPendingPaymentsIn = {
    installation_id: number;
};
export type ExistPendingInvoicesIn = {
    installation_id: number;
};
export type ExternalShipmentsOut = {
    external_shipments: ReportExternalShipment[];
    total: number;
};
