import React from "react"; import type { CurrencyType } from "@jobber/formatters"; import type { CellNumericProps } from "./CellNumeric"; interface CellCurrencyProps extends CellNumericProps { readonly value: number; readonly currency?: CurrencyType; } export declare function CellCurrency({ value, currency, }: CellCurrencyProps): React.JSX.Element; export {};