import { SpacingSize } from '../../common/SpacingProps'; export declare class BiButtonGroup { el: HTMLBiButtonGroupElement; /** * Alignment of the button group. Can be 'left', 'center', or 'right'. * @default 'left' */ alignment?: 'left' | 'center' | 'right'; /** * Direction of the button group. Can be 'horizontal' or 'vertical'. * @default 'horizontal' */ direction?: 'horizontal' | 'vertical'; /** * Spacing size between buttons in the group. * Will be applied to the gap property on the button group. * @default 'small' */ spacing?: SpacingSize; /** * Spacing on top of the button group. */ top?: SpacingSize; /** * Spacing on bottom of the button group. */ bottom?: SpacingSize; /** * Spacing on the left of the button group. */ left?: SpacingSize; /** * Spacing on the right of the button group. */ right?: SpacingSize; componentWillLoad(): void; render(): any; }