/// import { Button as ButtonType } from '@rasahq/rasa-api'; declare type Props = { onClick?: ((message: string) => any) | null; buttons?: ButtonType[] | null; }; export default function MessageButtons({ onClick, buttons }: Props): JSX.Element | null; export {};