import { PropsWithChildren } from 'react'; import { BaseProps } from '../../types.js'; import '@emotion/react'; type ButtonGroupProps = PropsWithChildren & { size?: "medium" | "small" | "large"; direction?: "horizontal" | "vertical"; isInline?: boolean; clearFix?: boolean; }; export { ButtonGroupProps };