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