import { CFDI, FiscalRegimen, IncomeType, PostalCodeBillings } from './api-billing.interfaces';
export type FiscalRegimensAcceptedOut = {
    total: number;
    cfdi_use: CFDI[];
};
export type IncomeTypesOut = {
    income_types: IncomeType[];
    total: number;
};
export type FiscalRegimensOut = {
    total: number;
    fiscal_regimen: FiscalRegimen[];
};
export type PostalCodesOut = {
    postal_code: PostalCodeBillings[];
    total: number;
};
