import { ExtractPropTypes, PropType } from 'vue';
import { ConfigurableProps } from '@vexip-ui/config';
export declare const affixProps: {
    inherit: PropType<boolean>;
    offset: PropType<number>;
    zIndex: PropType<number>;
    position: PropType<"bottom" | "top">;
    target: PropType<{}>;
    onScroll: PropType<import('@vexip-ui/config').AnyFunction | import('@vexip-ui/config').AnyFunction[]>;
    onChange: PropType<import('@vexip-ui/config').AnyFunction | import('@vexip-ui/config').AnyFunction[]>;
};
export type AffixProps = ExtractPropTypes<typeof affixProps>;
export type AffixCProps = ConfigurableProps<ExtractPropTypes<typeof affixProps>>;
