import type { ExtractPropTypes } from 'vue'; import type Anchor from './anchor.vue'; export declare const anchorProps: { container: { readonly type: import("vue").PropType (string | Window | HTMLElement | null) & {}) | (() => string | Window | HTMLElement | null) | ((new (...args: any[]) => (string | Window | HTMLElement | null) & {}) | (() => string | Window | HTMLElement | null))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; offset: import("element-plus/es/utils").EpPropFinalized; bound: import("element-plus/es/utils").EpPropFinalized; duration: import("element-plus/es/utils").EpPropFinalized; marker: import("element-plus/es/utils").EpPropFinalized; type: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ("default" | "underline") & {}) | (() => "default" | "underline") | ((new (...args: any[]) => ("default" | "underline") & {}) | (() => "default" | "underline"))[], unknown, unknown, string, boolean>; direction: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ("vertical" | "horizontal") & {}) | (() => "vertical" | "horizontal") | ((new (...args: any[]) => ("vertical" | "horizontal") & {}) | (() => "vertical" | "horizontal"))[], unknown, unknown, string, boolean>; }; export declare type AnchorProps = ExtractPropTypes; export declare type AnchorInstance = InstanceType; export declare const anchorEmits: { change: (href: string) => boolean; click: (e: MouseEvent, href?: string | undefined) => boolean; }; export declare type AnchorEmits = typeof anchorEmits;