import { RefObject } from "react";
/**
 * useMounted is a custom hook that tracks the mounted state of a component.
 * It returns a ref object with a boolean value indicating whether the component is mounted.
 *
 * @returns {Object} An object containing the mounted ref
 */
declare const useMounted: () => {
    mounted: RefObject<boolean>;
};
export default useMounted;
