import { type ComposedGesture, type GestureType } from "react-native-gesture-handler";
import * as React from "react";
import type { GestureHandlerConfig } from "../types";
type GestureHandlerProps = {
    gesture: ComposedGesture | GestureType;
    debug?: boolean;
    config?: GestureHandlerConfig;
};
export declare const GestureHandler: ({ gesture, debug, config, }: GestureHandlerProps) => React.JSX.Element;
export {};
