UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 328 B
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 };