import { Country } from "./Country"; export declare class CountryHoliday { id: number; name: string; date: string; country: Country; created: Date; }