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

type DraggebleItemProps = {
    children: Children;
    animatedStyles: ViewStyle;
};
declare function DraggebleItem(props: DraggebleItemProps): React.JSX.Element;

export { DraggebleItem as default };
