import type { Dispatch, SetStateAction } from 'react'; interface UseCounterOutput { count: number; increment: () => void; decrement: () => void; reset: () => void; setCount: Dispatch>; } export declare function useCounter(initialValue?: number): UseCounterOutput; export {};