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.
*/declareconstuseIsMounted: () =>RefObject<boolean>;
exportdefault useIsMounted;