import { Path, Process } from '../../typings.d'; interface Options { shape?: Path; components?: Path; output?: Path; verboseOutput?: Path; maxMismatch?: number; exclude?: string; _process: Process; } export declare const update: (a: Options) => Promise; export {};