export type UseBrowserMemoryReturns = {
/**
* The timestamp when the memory info was last updated.
*/
timestamp: number
/**
* The memory info.
*/
memory: MemoryInfo | undefined
/**
* The maximum size of the heap, in bytes, that is available to the context.
*/
jsHeapSizeLimit: number
/**
* The total allocated heap size, in bytes.
*/
totalJSHeapSize: number
/**
* The used heap size, in bytes.
*/
usedJSHeapSize: number
/**
* Whether the browser supports the `Performance.memory` API.
*/
isSupported: boolean
/**
* Update the memory info.
*/
update(): void
}