import { IntlayerConfig } from "@intlayer/types/config"; import { GetConfigurationOptions } from "@intlayer/config/node"; //#region src/watcher.d.ts type WatchOptions = { configuration?: IntlayerConfig; configOptions?: GetConfigurationOptions; skipPrepare?: boolean; persistent?: boolean; }; export declare const watch: (options?: WatchOptions) => Promise<{ unsubscribe: () => Promise; }[]>; export declare const buildAndWatchIntlayer: (options?: WatchOptions) => Promise; //#endregion //# sourceMappingURL=watcher.d.ts.map