/** * Single source of truth for all user-visible naming identifiers. * To rename the package, change the values here + package.json + README, then rebuild. */ export declare const PACKAGE_NAME = "patch-mark"; export declare const ELEMENT_TAG = "patch-mark"; export declare const CLASS_PREFIX = "pm"; export declare const CSS_VAR_PREFIX = "--pm"; export declare const GLOBAL_STYLE_ATTR = "data-pm-global"; export declare const UI_ATTR = "data-pm-ui"; export declare const PICKER_ACTIVE_CLASS = "pm-picker-active"; export declare const STORAGE_KEY_DEFAULT = "patch-mark:annotations"; export declare const VISIBLE_ATTR = "visible"; export declare const THEME_ATTR = "theme"; export declare const REQUIRE_AUTH_ATTR = "require-auth"; /** Dock position of the launcher/panel: right-center (default) | right-top | right-bottom | left-center | left-top | left-bottom. */ export declare const POSITION_ATTR = "position"; /** URL parameter carrying an access token (sharing links), captured on load. */ export declare const TOKEN_PARAM = "pm_token"; export declare const STORAGE_KEY_TOKEN = "patch-mark:token"; /** Preset themes selectable via the theme attribute (CSS-driven, see styles.ts). */ export declare const THEME_NAMES: readonly ["blue", "violet", "emerald", "orange", "rose"]; export declare const VERSION: string;