import type { SetupContext, Ref } from 'vue'; export declare const IntersectionAnimateProps: { intersection: { type: BooleanConstructor; }; intersectionMargin: { type: StringConstructor; default: string; }; intersectionTarget: { type: StringConstructor; }; animateIn: { type: StringConstructor; default: string; }; }; export interface IIntersectionAnimateProps { once?: boolean; intersection?: boolean; animateIn?: string; intersectionMargin?: string; intersectionTarget?: string; } export declare function useIntersectionAnimate
(props: P, _context: SetupContext