export interface ButtonGroupContextProps {
    /**
     * Style variant of the buttons.
     */
    variant?: 'filled' | 'outline' | 'text' | string;
    /**
     * The size variation of the buttons.
     */
    size?: 'small' | 'medium' | 'large' | string;
}
export declare const ButtonGroupContext: import('react').Context<ButtonGroupContextProps>;
