///
import * as React from "react";
import * as styles from "./style/topic-displayer.css";
export declare type TopicDisplayerStyle = Partial;
export declare const TopicDisplayer: React.ComponentClass<{
classNames?: Partial | undefined;
displayLabels?: boolean | undefined;
topicList?: {
[key: string]: {
code: string;
label: string;
value: string;
};
} | undefined;
topicClickAction?: ((key: string) => void) | undefined;
}>;