/** * Calls a function only once during component lifecycle; * When dependency array is provided, will call the function again if at least one of the dependencies changed * @param callback The function to execute only once * @param dependencies A list of dependencies whose value, if changed since last call, * will trigger the execution of the callback */ export declare const useSingleton: (callback: () => any, dependencies?: any[]) => void; //# sourceMappingURL=hooks.d.ts.map