import React from 'react';
import { Children } from '../../types.js';
import 'react-native';
import 'softchatjs-core';

type DraggebleProps = {
    disable?: boolean;
    onLongPress?: () => void;
    children: Children;
    actionContainer?: Children;
};
declare function Draggeble(props: DraggebleProps): React.JSX.Element;

export { Draggeble as default };
