import { IncomeType } from './api-billing-do.interfaces';
export type IncomeTypesOut = {
    income_types: IncomeType[];
    total: number;
};
