import * as React from "react"; import { WrappedComponentProps } from "react-intl"; import * as numberJS from "@gooddata/numberjs"; import { IFormatTemplate } from "../typings"; interface IFormatInputOwnProps { format: string; onFormatChange: (format: string) => void; separators: numberJS.ISeparators; templates?: ReadonlyArray; } declare type IFormatInputProps = IFormatInputOwnProps & WrappedComponentProps; declare const FormatInputWithIntl: React.FunctionComponent> & { WrappedComponent: React.ComponentType; }; export default FormatInputWithIntl;