import type { ExtractPublicPropTypes } from 'vue'; import type Popper from './popper.vue'; declare const effects: readonly ["light", "dark"]; declare const triggers: readonly ["click", "contextmenu", "hover", "focus"]; export declare const Effect: { readonly LIGHT: "light"; readonly DARK: "dark"; }; export declare const roleTypes: readonly ["dialog", "grid", "group", "listbox", "menu", "navigation", "tooltip", "tree"]; export type PopperEffect = (typeof effects)[number] | (string & NonNullable); export type PopperTrigger = (typeof triggers)[number]; export interface PopperProps { /** * @description role determines how aria attributes are distributed */ role?: (typeof roleTypes)[number]; } /** * @deprecated Removed after 3.0.0, Use `PopperProps` instead. */ export declare const popperProps: { readonly role: import("element-plus/es/utils").EpPropFinalized; }; /** * @deprecated Removed after 3.0.0, Use `PopperProps` instead. */ export type PopperPropsPublic = ExtractPublicPropTypes; export type PopperInstance = InstanceType & unknown; /** @deprecated use `popperProps` instead, and it will be deprecated in the next major version */ export declare const usePopperProps: { readonly role: import("element-plus/es/utils").EpPropFinalized; }; /** @deprecated use `PopperProps` instead, and it will be deprecated in the next major version */ export type UsePopperProps = PopperProps; export {};