import type { ExtractPropTypes } from 'vue'; import type { Property } from 'csstype'; import type Affix from './affix.vue'; export declare const affixProps: { readonly zIndex: import("bigin-ui/es/utils").EpPropFinalized<(new (...args: any[]) => Property.ZIndex & {}) | (() => Property.ZIndex) | ((new (...args: any[]) => Property.ZIndex & {}) | (() => Property.ZIndex))[], unknown, unknown, 100, boolean>; readonly target: import("bigin-ui/es/utils").EpPropFinalized; readonly offset: import("bigin-ui/es/utils").EpPropFinalized; readonly position: import("bigin-ui/es/utils").EpPropFinalized; }; export declare type AffixProps = ExtractPropTypes; export declare const affixEmits: { scroll: ({ scrollTop, fixed }: { scrollTop: number; fixed: boolean; }) => boolean; change: (fixed: boolean) => boolean; }; export declare type AffixEmits = typeof affixEmits; export declare type AffixInstance = InstanceType;