import { type Dispatch, type SetStateAction } from 'react'; export declare function useThrottledState(initialState: S | (() => S), delay: number, noTrailing?: boolean): [S, Dispatch>];