import type { ExtractPropTypes } from 'vue'; import type Affix from './affix.vue'; export declare const affixProps: { zIndex: { type: PropType; default: number; }; target: { type: StringConstructor; default: string; }; offset: { type: NumberConstructor; default: number; }; position: { type: StringConstructor; values: string[]; default: string; }; }; export type AffixProps = ExtractPropTypes; 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;