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