import type { EditableNodeAttributes } from "../types"; import { type ResponsiveLength } from "../utils/responsivePresentation"; interface StackProps extends EditableNodeAttributes { direction?: "vertical" | "horizontal"; gap?: "none" | "sm" | "md" | "lg" | "xl"; gapValue?: string; responsiveGap?: ResponsiveLength; align?: "start" | "center" | "end" | "stretch"; justify?: "start" | "center" | "end" | "between"; children?: React.ReactNode; className?: string; } /** * @deprecated Retained so existing site JSON continues to render. Use Container * with `display="flex"` for all new layouts. */ export declare function Stack({ direction, gap, gapValue, responsiveGap, align, justify, children, className, "data-node-id": dataNodeId, }: StackProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Stack.d.ts.map