import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; import type Affix from './affix.vue'; export declare const affixProps: { readonly zIndex: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, 100, boolean>; readonly target: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly offset: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly position: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; }; export type AffixProps = ExtractPropTypes; export type AffixPropsPublic = __ExtractPublicPropTypes; export declare const affixEmits: { scroll: ({ scrollTop, fixed }: { scrollTop: number; fixed: boolean; }) => boolean; change: (fixed: boolean) => boolean; }; export type AffixEmits = typeof affixEmits; export type AffixInstance = InstanceType & unknown;