import State from "./State";
import { FlickingContext } from "../types";
declare class DraggingState extends State {
    readonly type: 2;
    readonly holding = true;
    readonly playing = true;
    onChange(e: any, { moveCamera, transitTo }: FlickingContext): void;
    onRelease(e: any, context: FlickingContext): void;
}
export default DraggingState;
