///
import { NumberProps } from '../Number/Number';
export interface CurrencyProps extends NumberProps {
currency?: string;
}
export declare function Currency(props: CurrencyProps): JSX.Element;
export declare namespace Currency {
var defaultProps: Partial;
}