/**
 * 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 declare function getLastChanged<T>(value: () => T): {
    readonly current: number;
};
