import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; import { GapValue } from "./types"; import { ResponsiveUtilityValue } from "./createUtilityClasses"; export declare type StackDirection = "horizontal" | "vertical"; export interface StackProps extends BsPrefixProps, JSX.HTMLAttributes { direction?: StackDirection; gap?: ResponsiveUtilityValue; } declare const Stack: BsPrefixRefForwardingComponent<"span", StackProps>; export default Stack;