import type { ExtractPropTypes } from 'vue'; import type Anchor from './anchor.vue'; export declare const anchorProps: { container: { readonly type: import("vue").PropType (string | HTMLElement | Window | null) & {}) | (() => string | HTMLElement | Window | null) | ((new (...args: any[]) => (string | HTMLElement | Window | null) & {}) | (() => string | HTMLElement | Window | null))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; offset: import("@inte-cloud/lit-element/es/utils").EpPropFinalized; bound: import("@inte-cloud/lit-element/es/utils").EpPropFinalized; duration: import("@inte-cloud/lit-element/es/utils").EpPropFinalized; marker: import("@inte-cloud/lit-element/es/utils").EpPropFinalized; type: import("@inte-cloud/lit-element/es/utils").EpPropFinalized<(new (...args: any[]) => ("default" | "underline") & {}) | (() => "default" | "underline") | ((new (...args: any[]) => ("default" | "underline") & {}) | (() => "default" | "underline"))[], unknown, unknown, string, boolean>; direction: import("@inte-cloud/lit-element/es/utils").EpPropFinalized<(new (...args: any[]) => ("horizontal" | "vertical") & {}) | (() => "horizontal" | "vertical") | ((new (...args: any[]) => ("horizontal" | "vertical") & {}) | (() => "horizontal" | "vertical"))[], 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) => boolean; }; export declare type AnchorEmits = typeof anchorEmits;