import { Country } from "src/modules/country/entities/country.entity";
export declare class Currency {
    id: number;
    currency_code: string;
    name: string;
    symbol: string;
    country_id: number;
    deleted_at: Date;
    created_at: Date;
    updated_at: Date;
    country: Country;
}
