import { AfterContentInit, QueryList } from '@angular/core';
import { Button } from './button.directive';
export declare class ButtonGroup implements AfterContentInit {
    baseClass: boolean;
    /**
     * 	Join buttons as segmented group
     */
    segmented: boolean;
    buttons: QueryList<Button>;
    ngAfterContentInit(): void;
}
