1 | import { type HTMLChakraProps, type InferRecipeProps, type JsxStyleProps } from "../../styled-system";
|
2 | declare const StyledGroup: import("../..").ChakraComponent<"div", {
|
3 | orientation?: import("../..").ConditionalValue<"horizontal" | "vertical" | undefined>;
|
4 | attached?: import("../..").ConditionalValue<boolean | undefined>;
|
5 | grow?: import("../..").ConditionalValue<boolean | undefined>;
|
6 | stacking?: import("../..").ConditionalValue<"first-on-top" | "last-on-top" | undefined>;
|
7 | }>;
|
8 | type VariantProps = InferRecipeProps<typeof StyledGroup>;
|
9 | export interface GroupProps extends HTMLChakraProps<"div", VariantProps> {
|
10 | |
11 |
|
12 |
|
13 | align?: JsxStyleProps["alignItems"];
|
14 | |
15 |
|
16 |
|
17 | justify?: JsxStyleProps["justifyContent"];
|
18 | |
19 |
|
20 |
|
21 | wrap?: JsxStyleProps["flexWrap"];
|
22 | }
|
23 | export declare const Group: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<GroupProps & import("react").RefAttributes<HTMLDivElement>>>;
|
24 | export {};
|