import m from 'mithril'; import { IAttrs, ISizeAttrs, IIntentAttrs } from '../../_shared'; export interface IButtonGroupAttrs extends IAttrs, ISizeAttrs, IIntentAttrs { /** Toggles basic styling on children (no borders/background) */ basic?: boolean; /** Adds rounded styling (no borders/background) */ rounded?: boolean; /** Toggles outline styling on children (no background) */ outlined?: boolean; /** Fills width of parent container */ fluid?: boolean; [htmlAttrs: string]: any; } export declare class ButtonGroup implements m.Component { view({ attrs, children }: m.Vnode): m.Vnode; }