import { MotionState } from '../../motion-state';
import { BaseGesture } from '.';
export declare class InViewGesture extends BaseGesture {
    isActive(): boolean;
    constructor(state: MotionState);
    mount(): void;
    update(): void;
}
