import React from "react"; interface ButtonGroupProps { variant?: string; color?: string; size?: string; align?: "" | "center" | "start" | "end"; vertical?: boolean; className?: string; children?: any; [x: string]: any; } export declare const ButtonGroup: ({ variant, color, size, align, vertical, className, children, ...props }: ButtonGroupProps) => React.JSX.Element; export {};