import { FormInstance } from 'antd'; import { Meta, UpdatePayload } from '../types'; import { OPERATION_TYPES } from '../constants'; interface UseOperationsProps { meta: Meta; selectedPath: string | null; onChange?: (payload: UpdatePayload) => void; form: FormInstance; onSelectedPathChange: (path: string | null) => void; } export declare const useOperations: ({ meta, selectedPath, onChange, form, onSelectedPathChange, }: UseOperationsProps) => { handleOperation: (type: keyof typeof OPERATION_TYPES, itemName: string) => void; }; export {};