import { default as React } from 'react'; export interface VQAAnnotationPanelRef { validate: () => boolean; } interface VQAAnnotationPanelProps { question: string; answer: string; readOnly?: boolean; onChange?: (question: string, answer: string) => void; } declare const VQAAnnotationPanel: React.ForwardRefExoticComponent>; export default VQAAnnotationPanel;