import { ReactNode } from "react";
declare type WatcherProps<IV> = {
    names: string | string[];
    initialValues: IV;
    children: (value: IV) => ReactNode;
};
export declare function Watcher<IV extends Record<string, any> = Record<string, any>>({ names: _names, children, initialValues, }: WatcherProps<IV>): JSX.Element;
export {};
//# sourceMappingURL=watcher.d.ts.map