import * as React from 'react'; declare type Props = { description: string; onDescriptionChange: (event: React.FormEvent) => void; }; /** * * @param props * @constructor */ declare const CategoryDescriptionTextField: (props: Props) => JSX.Element; export default CategoryDescriptionTextField;