/** * currency에 따라 숫자를 통화 형식으로 변환한다. * * ex) KRW 1024 => 1,024 * * ex) USD 1024 => 1,024.00 */ export default function formatCurrency(value: string | number, currency?: string): string;