/** * Ensures that a given block of code is run once, and only once. * @param callBack Code to run. */ export declare const useSingleton: (callBack?: () => void) => void;