import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime'; import { HTMLAttributes } from 'react'; import { Props } from '../@types/Props.js'; import { Space } from '../@types/Space.js'; interface StackProps extends HTMLAttributes, Props { /** * [Units of space](https://www.theguardian.design/2a1e5182b/p/449bd5-space) between inline items (one unit is 4px). */ space?: Space; } /** * [Storybook](https://guardian.github.io/storybooks/?path=/story/source_react-components-stack--default) • * [Design System](https://theguardian.design/2a1e5182b/p/827581-stack) • * [GitHub](https://github.com/guardian/csnx/tree/main/libs/@guardian/source/src/react-components/stack/Stack.tsx) • * [NPM](https://www.npmjs.com/package/@guardian/source) * * `Stack` components will be stacked one on top of the other. */ declare const Stack: ({ cssOverrides, children, space, ...props }: StackProps) => _emotion_react_jsx_runtime.JSX.Element; export { Stack }; export type { StackProps };