/** * Recipe configuration for the ToggleButtonGroup component. * Defines the styling variants and base styles using Chakra UI's recipe system. */ export declare const buttonGroupRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"root" | "button", { size: { xs: { button: { h: "800"; minW: "800"; fontSize: "350"; fontWeight: "500"; lineHeight: "400"; px: "300"; gap: "100"; _icon: { width: "500"; height: "500"; }; } | undefined; }; md: { button: { h: "1000"; minW: "1000"; fontSize: "400"; lineHeight: "500"; px: "400"; gap: "200"; _icon: { width: "600"; height: "600"; }; } | undefined; }; }; colorPalette: { primary: { button: { colorPalette: "primary"; }; }; critical: { button: { colorPalette: "critical"; }; }; neutral: { button: { colorPalette: "neutral"; }; }; }; }>;