import { Dispatch, SetStateAction } from 'react'; interface UseUiVisibleKeybindProps { /** * To support render in server side for Vike, support to pass the search params manually. */ urlSearchStr?: string; } export declare function useUiVisibleKeybind({ urlSearchStr, }?: UseUiVisibleKeybindProps): [ boolean, Dispatch> ]; export {};