import * as React from 'react'; import type { FormProps } from '@alifd/next/types/form'; import type { FieldOption } from '@alifd/next/types/field'; import type { Operations } from '@/components/form/form/form'; import type { Service } from '@/components/layout/pro-card'; export interface CbayelComplexFormProps extends FormProps { operations: Operations[]; status: 'readonly' | 'editable'; color: string; field: FieldOption; changingField: { [x: string]: any; }; service: Service; } declare const CbayelComplexFormRef: React.ForwardRefExoticComponent>>; export default CbayelComplexFormRef;