/**
* Get the last time a state changed.
* @param value The state to track as a getter function.
* @see https://svelte-librarian.github.io/sv-use/docs/core/get-last-changed
*/
export declarefunctiongetLastChanged<T>(value: () => T): {
readonly current: number;
};