import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
//#region src/buttonGroup/buttonGroup.types.d.ts
type ButtonGroupProps = SystemProps & ThemingProps<'ButtonGroup'> & {
  /** Available theme colors for this component. @deprecated */
  colorScheme?: string;
  /** Makes all wrapped buttons disabled. */
  disabled?: boolean;
  /** Border color between the buttons. */
  innerBorderColor?: string;
  /** variant of the button-group. */
  variant?: string;
};
//#endregion
export { ButtonGroupProps };

//# sourceMappingURL=buttonGroup.types.d.ts.map