import { FC, HTMLAttributes } from 'react'; export interface Props extends HTMLAttributes { value: string; onChange: (event: any) => any; } export declare const AddDialogContent: FC;