import * as React from "react"; import type { StackOwnProps, PolymorphicWithRef } from "../types"; declare type StackProps = PolymorphicWithRef; declare type StackElement = (props: StackProps) => React.ReactElement>; /** * **A Stack is a layout component that arranges its children in a horizontal or vertical stack.** */ declare const Stack: StackElement & { Item: >(props: import("../types").StackItemOwnProps & import("../types/PolymorphicWithRef").ComponentProp & Omit>, "component" | keyof import("../types").StackItemOwnProps>) => React.ReactElement & Omit>, "component" | keyof import("../types").StackItemOwnProps>, string | React.JSXElementConstructor>; }; export default Stack; //# sourceMappingURL=Stack.d.ts.map