import { GlobalBankAccount2 } from './bank-account/types';
export interface GlobalCountry {
    id: number;
    code: string;
    name: string;
}
export interface GlobalLanguage {
    id: number;
    code: string;
    name: string;
}
export declare enum GlobalCurrency {
    EUR = "EUR",
    USD = "USD",
    MXN = "MXN"
}
export interface GlobalEconomicActivity {
    id: number;
    key: string;
}
export declare enum GlobalPaymentMethodType {
    bankAccount = "bank-account"
}
export type GlobalPaymentMethodMetadata = GlobalBankAccount2;
export interface GlobalAmount {
    value: number;
    currency: GlobalCurrency;
}
export declare enum GlobalContractType {
    policy = 1,
    maintenance = 2,
    supplies = 3,
    serviceProvision = 4
}
//# sourceMappingURL=types.d.ts.map