import { ReactNode } from "react"; import { Theme } from "@emotion/react"; export declare type ButtonGroupProps = { attached?: boolean; direction?: "horizontal" | "vertical"; space?: keyof Theme["space"]; children: ReactNode; }; export declare const ButtonGroup: ({ attached, direction, space, children, }: ButtonGroupProps) => import("@emotion/react/jsx-runtime").JSX.Element;