import React, { ForwardedRef, MouseEvent, PointerEvent, RefObject, WheelEvent } from 'react'; import CSS from 'csstype'; declare function _FlexRow(props: { className?: string; style?: CSS.Properties; children?: React.ReactNode; justifyContent?: string; alignItems?: string; flexWrap?: 'wrap' | 'nowrap' | 'wrap-reverse'; 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; maxHeight?: string; minHeight?: string; maxWidth?: string; minWidth?: string; gridArea?: string; borderRadius?: string; justifySelf?: string; alignSelf?: string; boxShadow?: string; }, ref: ForwardedRef): JSX.Element; declare const FlexRow: typeof _FlexRow; export declare const AnimatedFlexRow: typeof _FlexRow; export default FlexRow;