import { CSSProperties, HTMLAttributes, ReactElement } from "react"; import { ButtonProps } from "../Button"; import { IconButtonProps } from "../IconButton"; type ButtonsVariant = "vertical" | "horizontal"; export interface ButtonsProps extends HTMLAttributes { variant?: ButtonsVariant; children: ReactElement | ReactElement[]; className?: string; style?: CSSProperties; } export declare const Buttons: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Buttons.d.ts.map