import { Form } from '@procore/core-react'; import React from 'react'; interface SingleFormProps { component?: any; debug?: boolean; initialValue?: any; variant?: React.ComponentProps['variant']; view?: React.ComponentProps['view']; } /** All variations for a field with TextEditor. * @example * */ export declare function BaseCRU>(props: Omit & { component: Element; } & Omit, 'name'>): React.JSX.Element; export {};