import type { DefineComponent } from "vue"; /** Affix component props */ export interface AffixProps { /** default: 0 */ offsetTop?: number; offsetBottom?: number; /** default: undefined */ target?: (...args: any[]) => any; } /** Affix Vue 3 component */ declare const Affix: DefineComponent; export default Affix;