import * as React from 'react'; import { Size, Direction } from './../Types'; interface ILabelGroupProps { /** @ignore */ className?: string; /** @ignore */ children?: React.ReactNode; /** * `basic` Labels add a border and do not have a background. * @default false */ basic?: boolean; /** * Labels' background color, e.g. `skyblue`. */ color?: string; /** * Labels point to other content to the `left`, `top`, `right` or `bottom`. Default direction is `left` */ pointing?: Direction; /** * Size of Labels, one of `mini`, `tiny`, `small`, `medium`, `large`, `big`, `huge` and `massive`. * */ size?: Size; /** * If set, Labels appear as tags. * @default false */ tag?: boolean; } declare const LabelGroup: (props: ILabelGroupProps) => JSX.Element; export { LabelGroup, ILabelGroupProps };