import React from 'react'; import { FlintButtonGroup as FlintButtonGroupElement } from '@getufy/flint-ui/button/flint-button-group'; export interface FlintButtonGroupProps extends Omit, 'color'> { /** * Layout direction of the group. * Allowed values: 'horizontal' | 'vertical' */ orientation?: 'horizontal' | 'vertical'; /** * Size propagated to child `flint-button` elements. * Allowed values: '' | 'sm' | 'md' | 'lg' */ size?: '' | 'sm' | 'md' | 'lg'; /** * Appearance propagated to child `flint-button` elements. * Allowed values: '' | 'filled' | 'outlined' | 'text' | 'ghost' */ appearance?: '' | 'filled' | 'outlined' | 'text' | 'ghost'; /** * Color propagated to child `flint-button` elements. * Allowed values: '' | 'primary' | 'neutral' | 'destructive' | 'success' | 'warning' */ color?: '' | 'primary' | 'neutral' | 'destructive' | 'success' | 'warning'; } export declare const FlintButtonGroup: React.ForwardRefExoticComponent>;