/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; import { type SpacingStep } from "../../spacing.js"; export interface StackProps extends JSX.HTMLAttributes { direction?: "vertical" | "horizontal"; /** Gap, a rung on the spacing ladder (cf: spacing-ladder). */ gap?: SpacingStep | number; /** Cross-axis alignment. */ align?: "start" | "center" | "end" | "stretch"; /** Main-axis alignment. */ justify?: "start" | "center" | "end" | "between" | "around"; wrap?: boolean; /** Element to render, e.g. "ul". */ as?: keyof JSX.IntrinsicElements; } /** * Flex layout with a spacing-ladder gap. * * @example * */ export declare const Stack: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Stack.d.ts.map