import { IndexPath } from './indexPath.js'; type TransformPathOperation = 'insert' | 'remove'; export declare function transformPath(path: IndexPath, operation: TOperation, otherPath: IndexPath, count?: number): TOperation extends 'insert' ? IndexPath : IndexPath | undefined; export {};