/**
* Returns the prop value from the last render.
*
* Adapted from https://usehooks.com/usePrevious/.
*
* @group Hooks
*/
export declare const usePrevious: <T>(value: T) => T | null;
