/**
 * Alias to `useEffect` with the intention to only run on mount/unmount.
 * Avoids the React lint errors and encodes intent.
 */
export declare const useMount: (callback: () => (() => void) | void) => void;
/**
 * Alias to `useLayoutEffect` with the intention to only run on mount/unmount
 * Avoids the React lint errors and encodes intent.
 */
export declare const useMountLayout: (callback: () => (() => void) | void) => void;
//# sourceMappingURL=useMount.d.ts.map