import { PropsWithChildren } from 'react'; import { PluginMeta } from '@topwrite/common'; interface SelectContextProps { setCurrent: (item: PluginMeta) => void; current?: PluginMeta; } export default function Selectable({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export declare function useSelectable(): SelectContextProps; export {};