import { YUIComponent, YUIComponentSize } from './component';

/** Tag Component */
export declare class YTag extends YUIComponent {
  /** Tag type */
  type: 'info' | 'warning' | 'danger';

  /** Tag size */
  size: YUIComponentSize;

  /** Determine whether it's closable, mutually exclusive with checkable */
  closable: boolean;

  /** Determine whether it's checkable, mutually exclusive with closable */
  checkable: boolean;

  /** Determine the Tag is checked, only take effect when checkable is true */
  checked: boolean;
}
