// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit

import type * as React from "react";

import type * as Common from "../common/types";

export interface Props extends Common.Globals {
  readonly children: React.ReactNode;
  readonly className?: string;
  readonly filled?: boolean;
  readonly disabled?: boolean;
  readonly required?: boolean;
  readonly id?: string;
  readonly error?: boolean;
  readonly help?: boolean;
  readonly iconRef?: Common.RefType<HTMLSpanElement>;
  readonly labelRef?: Common.RefType<HTMLSpanElement>;
  readonly inlineLabel?: boolean;
  readonly onMouseEnter?: Common.Event<React.MouseEvent<HTMLElement>>;
  readonly onMouseLeave?: Common.Event<React.MouseEvent<HTMLElement>>;
}
