import { type InjectionKey, type Reactive, type ComputedRef } from "vue"; import type { LocaleKey, Localization, PluginContext } from "./index"; import { EventAnnotation, EventCore, AnnotationType } from "./enumerators"; export declare const PLUGIN_ID: { ANNOTATIONS: string; }; export declare const Locales: Record; export declare const SYMBOL_SHARED_UI: InjectionKey>; export declare const SYMBOL_LOCALIZATION: InjectionKey | undefined>; export declare const EVENT_ANNOTATION: typeof EventAnnotation; export declare const EVENT_CORE: typeof EventCore; export declare const BASIC_COLOR: { readonly Black: "#000000"; readonly DarkGray: "#444444"; readonly Gray: "#696969"; readonly LightGray: "#9C9C9C"; readonly LightestGray: "#CDCDCD"; readonly ChristmasWhite: "#EDEDED"; }; export declare const FREE_TEXT_FONT_COLOR: { readonly Purple: "#7862FF"; readonly Blue: "#1777FF"; readonly Red: "#F66365"; readonly Orange: "#F67E63"; readonly Yellow: "#F5C463"; readonly Green: "#48BB77"; readonly Black: "#000000"; readonly DarkGray: "#444444"; readonly Gray: "#696969"; readonly LightGray: "#9C9C9C"; readonly LightestGray: "#CDCDCD"; readonly ChristmasWhite: "#EDEDED"; }; export declare const HIGHLIGHT_COLOR: { readonly Black: "#000000"; readonly DarkGray: "#444444"; readonly Gray: "#696969"; readonly LightGray: "#9C9C9C"; readonly LightestGray: "#CDCDCD"; readonly ChristmasWhite: "#EDEDED"; readonly Purple: "#CAAAFF"; readonly Cyan: "#65EDE9"; readonly Red: "#FFACAC"; readonly Orange: "#FFBD82"; readonly Yellow: "#FCE244"; readonly Green: "#A0F751"; }; export declare const UNDERLINE_COLOR: { readonly Black: "#000000"; readonly DarkGray: "#444444"; readonly Gray: "#696969"; readonly LightGray: "#9C9C9C"; readonly LightestGray: "#CDCDCD"; readonly ChristmasWhite: "#EDEDED"; readonly Purple: "#7862FF"; readonly Blue: "#1777FF"; readonly Red: "#F66365"; readonly Orange: "#F67E63"; readonly Yellow: "#F5C463"; readonly Green: "#48BB77"; }; export declare const DEFAULT_HIGHLIGHT_COLOR: Record<(typeof HIGHLIGHT_COLOR)[keyof typeof HIGHLIGHT_COLOR], string>; export declare const DEFAULT_UNDERLINE_COLOR: Record<(typeof UNDERLINE_COLOR)[keyof typeof UNDERLINE_COLOR], string>; export declare const DEFAULT_STRIKETHROUGH_COLOR: Record<(typeof UNDERLINE_COLOR)[keyof typeof UNDERLINE_COLOR], string>; export declare const DEFAULT_FREE_TEXT_FONT_COLOR: Record<(typeof FREE_TEXT_FONT_COLOR)[keyof typeof FREE_TEXT_FONT_COLOR], string>; export declare const EDITOR_PREFIX: "pdfjs_internal_editor_"; export declare const XFDF_ELEMENT_TO_ANNOTATION_TYPE: Record; export declare const ANNOTATION_TYPE_TO_XFDF_ELEMENT: Record;