import { ComputedRef, type Reactive, type ComponentInternalInstance, type Ref } from 'vue';
import { type Localization, type PluginItem, type Plugin } from '@vue-pdf-viewer/shared';
declare const usePlugins: (instance: ComponentInternalInstance, plugins?: Reactive<Plugin[]>, viewerLocalization?: ComputedRef<Localization>) => {
    sidebarItems: Ref<PluginItem[]>;
    annotationMounted: Ref<boolean>;
};
export default usePlugins;
