/** * Custom hook that runs a callback function exactly once when the component mounts. * * @param onMount - The function to call on mount. */ export declare const useMount: (onMount: () => void) => void;