import { Mutation } from './types'; type PathSeg = string | number; export declare function parsePath(path: string): PathSeg[]; export declare function applyMutation(config: T, mutation: Mutation): T; export {};