import { InjectedFormikProps } from "formik"; import * as React from "react"; import { RouteComponentProps } from "react-router-dom"; interface Props extends RouteComponentProps, InjectedFormikProps { options: any; formik: any; history: any; match: any; intl: any; topicsFieldName: string; target?: string; } export declare class AddTopicView extends React.Component { generateTopicMeta: (id: any) => any; onChange: (evt: any) => void; goBack: () => void; goBackAndAutoSubmit: () => void; clearSelection: (evt: any) => void; getOptionList: () => JSX.Element; render(): JSX.Element; } export declare const NonInjectAddTopicView: typeof AddTopicView; declare const _default: React.ComponentType; export default _default;