import { Department, EconomicActivity, EstablishmentType, Municipality, PersonType } from './api-billing-sv.interfaces';
export type EconomicActivitiesOut = {
    economic_activities: EconomicActivity[];
    total: number;
};
export type PersonTypesOut = {
    person_types: PersonType[];
    total: number;
};
export type EstablishmentTypesOut = {
    establishment_types: EstablishmentType[];
    total: number;
};
export type DepartmentsOut = {
    departments: Department[];
    total: number;
};
export type MunicipalitiesOut = {
    municipalities: Municipality[];
    total: number;
};
