import { FC } from 'react'; import { ICompareOperation } from '@toy-box/meta-schema'; import { IFieldMetaFlow } from '../../flow/types'; import { AutoFlow } from '../../flow/models/AutoFlow'; interface ResourceCreateProps { fieldMetas?: ICompareOperation[]; flowGraph: AutoFlow; opName?: string | JSX.Element; isOpBtn?: boolean; title?: string | JSX.Element; value?: IFieldMetaFlow; fieldType?: string; } export declare const ResourceCreate: FC; export {};