declare type Paths = string | ReadonlyArray; declare type OnChange = () => void; /** * Watches for selected paths and call `onChange` after files changed. */ export declare function watch(paths: Paths, onChange: OnChange): void; export {};