import * as React from 'react'; import { FunctionComponent } from 'react'; import { IDictionary } from '@goodgamestudios/webshop-utils'; import { IClassName } from '../../framework'; interface IFormattedProps { value: number; } interface IFormattedCurrencyProps extends IFormattedProps { currency?: string; } export declare const FormattedAmount: (props: IFormattedProps) => JSX.Element; export declare const LoadingDots: FunctionComponent<{ id?: string; className?: string; }>; export declare const FormattedCurrency: (props: IFormattedCurrencyProps) => JSX.Element; interface ITranslateMessageProps extends IClassName { id: string; values?: IDictionary; } export declare const FormattedMessage: React.FunctionComponent; export {};