lark-cms
Version:
Multi terminal CMS component library
16 lines (15 loc) • 494 B
TypeScript
/** @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 {};