import { ComponentProps, As, ComponentWithAs } from '../types.js'; import { SpacerSpecificProps } from './handler.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 SpacerProps = ComponentProps<"Spacer"> & SpacerSpecificProps; type SpacerComponent = ComponentWithAs; /** * Spacer is a utility component used to create space between other components in a Kuma UI application. * Accepts 'size' and 'horizontal' props, which specify the size of the space and its orientation, respectively. * * @see — Further documentation will be available in the future. */ declare const Spacer: SpacerComponent; export { Spacer, SpacerComponent, SpacerProps };