import { HTMLAttributes } from "react";
import { type OverridableComponent } from "../../utils-external/index.js";
import { PrimitiveProps } from "../base/BasePrimitive.js";
import { PrimitiveAsChildProps } from "../base/PrimitiveAsChildProps.js";
import { ResponsiveProp, SpacingScale } from "../utilities/types.js";
export type StackProps = HTMLAttributes & {
/**
* CSS `justify-content` property.
*
* @example
* justify='center'
* justify={{xs: 'start', sm: 'center', md: 'end', lg: 'space-around', xl: 'space-between'}}
*/
justify?: ResponsiveProp<"start" | "center" | "end" | "space-around" | "space-between" | "space-evenly">;
/**
* CSS `align-items` property.
* @default "stretch"
*
* @example
* align='center'
* align={{xs: 'start', sm: 'center', md: 'end', lg: 'baseline', xl: 'stretch'}}
*/
align?: ResponsiveProp<"start" | "center" | "end" | "baseline" | "stretch">;
/**
* Sets the CSS `flex-wrap` property.
*/
wrap?: boolean;
/**
* CSS `gap` property.
* Accepts a [spacing token](https://aksel.nav.no/grunnleggende/styling/design-tokens#space)
* or an object of spacing tokens for different breakpoints.
*
* @example
* gap='space-16'
* gap='space-32 space-16'
* gap={{xs: 'space-8', sm: 'space-12', md: 'space-16', lg: 'space-20', xl: 'space-24'}}
*/
gap?: ResponsiveProp;
/**
* CSS `flex-direction` property.
* @default "row"
*
* @example
* direction='row'
* direction={{xs: 'row', sm: 'column'}}
*/
direction?: ResponsiveProp<"row" | "column" | "row-reverse" | "column-reverse">;
} & PrimitiveProps & PrimitiveAsChildProps;
export declare const Stack: OverridableComponent;
export default Stack;