import { ComponentProps, As, ComponentWithAs } from '../types.js'; import '../../theme-79e176a6.js'; import '../../utils/object.js'; import '../../utils/types.js'; import '@kuma-ui/sheet'; import '../componentList.js'; import '@kuma-ui/system'; import 'react'; type HStackProps = ComponentProps<"HStack">; type HStackComponent = ComponentWithAs; /** * HStack is a Box component with `display="flex"` and `flex-direction: row` set by default. It makes it easier to layout and align child components in a horizontal direction. It is a fundamental layout component in Kuma UI. * * @see — http://kuma-ui.com/docs/Components/HStack */ declare const HStack: HStackComponent; export { HStack, HStackComponent, HStackProps };