
import * as React from 'react';

import { FlexLayoutGap } from '../../common/components-enum-props';


interface RowProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  noGap ?: boolean;
  tag ?: string;
  resizable ?: boolean;
  resizableFixed ?: boolean;
  resizableAbsolute ?: boolean;
  resizableHandler ?: boolean;
  gap?: keyof typeof FlexLayoutGap;
  onClick ?: (event?: any) => void;
  onGridResize ?: (...args: any[]) => void;
  color?: string;
  colorTheme?: string;
  textColor?: string;
  bgColor?: string;
  borderColor?: string;
  rippleColor?: string;
  themeDark?: boolean;
  ref?: React.MutableRefObject<{el: HTMLElement | null}>;
  children?: React.ReactNode;
}
declare const Row: React.FunctionComponent<RowProps>;

export default Row;
  