import type { TComponentIcon } from "@helpers/types"; import type { ButtonProps } from "@components/Button/Button.interface"; export interface ButtonGroupProps extends Pick { buttons: Omit[]; variant: "filled" | "outlined" | "ghost"; icon?: TComponentIcon; }