/** * Lifecycle hook providing ability to check component's mount state. * Gives a function that will return true if component mounted and false otherwise. */ export declare const useMountedState: () => (() => boolean);