type Currency = {
    id: number;
    code: string;
    number: string;
    is_primary: number;
};
export type { Currency };
