import { TextType } from '../../common/types';
import Message from '../base/Message';
import { Indicator } from '../text';
export type SuggestionSectionProps = {
    title: TextType;
    indicatorButtons: Indicator[];
};
export default class SuggestionSection extends Message {
    title: TextType;
    indicatorButtons: Indicator[];
    constructor(props: SuggestionSectionProps);
}
