import type { Ref } from '@stacksjs/stx'; /** * Reactive localStorage wrapper. * Convenience composable that delegates to useStorage with localStorage. * * @param key - Storage key * @param defaultValue - Default value when key doesn't exist * @param options - Serializer options */ export declare function useLocalStorage(key: string, defaultValue: T, options?: UseLocalStorageOptions): Ref; declare interface UseLocalStorageSerializer { read: (raw: string) => T write: (value: T) => string } declare interface UseLocalStorageOptions { serializer?: UseLocalStorageSerializer }