/**
 * A custom React hook that determines whether the component is mounted.
 *
 * @returns {boolean} - Returns `true` if the component is mounted, `false` otherwise.
 *
 * @example
 * ```tsx
 * const isMounted = useMounted();
 * console.log(isMounted); // true if the component is mounted
 * ```
 */
declare const useMounted: () => boolean;
export default useMounted;
