1 | import React from 'react';
|
2 | import { ButtonAppearances } from '../types';
|
3 | export declare type ButtonGroupProps = {
|
4 | /** The appearance to apply to all buttons. */
|
5 | appearance?: ButtonAppearances;
|
6 | };
|
7 | export declare const groupItemStyles: {
|
8 | flex: string;
|
9 | display: string;
|
10 | '& + &::before': {
|
11 | content: string;
|
12 | display: string;
|
13 | width: string;
|
14 | };
|
15 | };
|
16 | export default class ButtonGroup extends React.Component<ButtonGroupProps> {
|
17 | render(): JSX.Element;
|
18 | }
|