import { FlowMetaParam, TargetReference, IInputAssignment } from '../../types'; export declare class RecordCreate { id: string; name: string; description?: string; connector?: TargetReference; faultConnector?: TargetReference; registerId?: string; inputAssignments?: IInputAssignment[]; storeOutputAutomatically?: boolean; assignRecordIdToReference?: string; constructor(recordCreate: FlowMetaParam); protected makeObservable(): void; onEdit: (recordCreate: FlowMetaParam) => void; }