///
interface QuestionButtonProps {
label: string;
handleClick: (e: React.MouseEvent) => void;
highlightQuestion?: boolean;
}
declare const QuestionButton: ({ label, handleClick, highlightQuestion, }: QuestionButtonProps) => import("react/jsx-runtime").JSX.Element;
export default QuestionButton;