import { CountryCodeService } from './country-code.service';
export declare class CountryCodeDto {
    id: number;
    name: string;
    iso: string;
    iso3: string;
    dial_code: string;
    currency: string;
    currency_name: string;
    currency_symbol: string;
    country_flag: string;
}
export declare class CountryCodeController {
    private readonly countryCodeService;
    constructor(countryCodeService: CountryCodeService);
    findAll(): Promise<any>;
}
