import * as React from 'react'; import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; children: JSX.Element | JSX.Element[]; maxHeight?: number; show: boolean; setShow: React.Dispatch> | ((v: boolean) => void); style?: Style; }; declare const DraggableView: ({ tw, children, maxHeight, show, setShow, style, }: Props) => JSX.Element; export default DraggableView;