import { default as React } from 'react'; import { StyleProps, PolymorphicProps } from '../../style-engine'; export declare const buttonGroupStyles: import('../../style-engine').StylesDef<{ appearance: { pill: string; grouped: string; }; orientation: { horizontal: string[]; vertical: string[]; }; }>; export type ButtonGroupProps = PolymorphicProps>; export declare function ButtonGroup({ children, as, appearance, orientation, className, ...props }: ButtonGroupProps): React.JSX.Element;