import { RefObject } from "react";
/**
 * Returns a RefObject to check if the component is mounted.
 * @returns An object with readonly current property to check the mounted state.
 */
declare const useIsMounted: () => RefObject<boolean>;
export default useIsMounted;
