import React, { CSSProperties } from 'react'; export type Props = { id?: string | number; className?: string; style?: CSSProperties; bannedWords?: string[]; value?: string; onChange?: (v: string) => void; }; declare const Answering: ({ id }: Props) => React.JSX.Element; export { Answering };