import type { Ref } from '@stacksjs/stx'; /** * Simple boolean toggle. * Returns [state, toggleFn] where toggleFn flips the boolean or sets a specific value. */ export declare function useToggle(initialValue?: Ref | boolean): [Ref, (value?: boolean) => boolean];