import { BillingPaCustomer, District, Parish, Province } from './api-billing-pa.interfaces';
export type DistrictsOut = {
    total: number;
    districts: District[];
};
export type BillingPaCustomerOut = {
    customer: BillingPaCustomer;
};
export type ParishesOut = {
    total: number;
    parishes: Parish[];
};
export type ProvincesOut = {
    total: number;
    provinces: Province[];
};
