/** * A custom hook that will call the provided function only once when the component mounts. Useful for emitting * analytics tracking events on component mount. */ export declare const useOnMount: (fn: () => void) => void;