/** @format */
import * as React from "react";
import type { StyleProp, GestureResponderHandlers } from "react-native";
import type { FunctionComponent } from "react";
interface BlockProps {
    style?: StyleProp<any>;
    dragStartAnimationStyle: StyleProp<any>;
    onPress?: () => void;
    onLongPress: () => void;
    panHandlers: GestureResponderHandlers;
    delayLongPress: number;
    children?: React.ReactNode;
}
export declare const Block: FunctionComponent<BlockProps>;
export {};
