import React, { DragEvent, ForwardedRef, MouseEvent, PointerEvent, RefObject, WheelEvent } from 'react'; import CSS from 'csstype'; declare function _FlexCol(props: { className?: string; style?: CSS.Properties; children?: React.ReactNode; onDrop?: (e: DragEvent) => void; onDragOver?: (e: DragEvent) => void; justifyContent?: string; alignItems?: string; onContextMenu?: (e: MouseEvent) => void; onClick?: (e: MouseEvent) => void; pointer?: boolean; onWheel?: (e: WheelEvent) => void; width?: string; height?: string; onPointerEnter?: (e: PointerEvent) => void; onPointerLeave?: (e: PointerEvent) => void; margin?: string; padding?: string; backgroundColor?: string; ref?: RefObject; scroller?: boolean; xScroller?: boolean; maxHeight?: string; minHeight?: string; maxWidth?: string; minWidth?: string; overflow?: string; gridArea?: string; boxShadow?: string; borderRadius?: string; alignSelf?: string; onScroll?: (e: MouseEvent) => void; }, ref: ForwardedRef): JSX.Element; declare const FlexCol: typeof _FlexCol; export declare const AnimatedFlexCol: typeof _FlexCol; export default FlexCol;