/** * Function that utilizes the usePrevious hook to track the previous value of a given value of type T. * It uses an empty object as the initial value for comparison. * * @param {object} value - component props * * @see Note: we took this component from MUI. Code in the {@link https://github.com/mui/material-ui/blob/next/packages/mui-utils/src/usePreviousProps/usePreviousProps.ts github} */ export declare const usePreviousProps: (value: T) => Partial;