import { Country } from '@comparaonline/offers-models';
export interface CountryParams {
    name?: string;
    code?: string;
}
export declare class CountryFactory {
    constructor();
    build(options?: CountryParams): Country;
}
export declare const countryFactory: CountryFactory;
