import { ComponentInterface } from '../../stencil-public-runtime'; import { ButtonKind, ButtonSize, ButtonStatus } from '../button/types'; export declare class BcmButtonGroup implements ComponentInterface { host: HTMLElement; /** Defines the main visual style of buttons */ kind?: ButtonKind; /** Controls the button size */ size?: ButtonSize; /** Defines the button's status/state color */ status?: ButtonStatus; /** Full width buttons */ fullWidth?: boolean; /** Loading state */ loading?: boolean; /** Disabled state */ disabled?: boolean; /** Button orientation */ orientation: 'horizontal' | 'vertical'; componentDidLoad(): void; componentDidUpdate(): void; private applyPropertiesToButtons; private setButtonPositions; private buttonGroupClass; render(): any; }