import { FC } from "react"; export interface AddEditPhotoFormWidgetProps { title: string; onSubmit: (...args: any) => void; onClose: () => void; onChange: (event: any) => void; uploadLoading?: boolean; photoSrc?: string; formErrors: any; formState: any; } declare const ExampleForm: FC; export default ExampleForm;