import React from "react"; export interface EvaluateProps { title: string; show: boolean; onPositive: () => void; onNegative: () => void; style: React.CSSProperties; } export declare const Evaluate: ({ title, show, onPositive, onNegative, style, }: EvaluateProps) => JSX.Element;