import { type BezierComponentProps, type ChildrenProps, type MarginProps } from "../../types/props"; import { type StackProps } from "../Stack"; interface ButtonGroupOwnProps { /** * Determines whether there is a 6px gap between the buttons. * @default false */ withoutSpacing?: boolean; } export interface ButtonGroupProps extends Omit, 'role'>, ChildrenProps, MarginProps, Pick, ButtonGroupOwnProps { } export {}; //# sourceMappingURL=ButtonGroup.types.d.ts.map