import * as React from 'react'; import { FormTypes, SubmissionTypes } from '@oneblink/types'; type Props = { formElement: FormTypes.FormElement; submission: SubmissionTypes.S3SubmissionData['submission'] | undefined; allowCopy: boolean; }; declare function FormElementTableCell({ formElement, submission, allowCopy }: Props): import("react/jsx-runtime").JSX.Element | null; declare const _default: React.MemoExoticComponent; export default _default;