import * as React from "react"; import { SpaceSize } from "../../../../shared/styles/styleUtils/modifiers/modifierUtils"; export interface StackProps { className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * The size of the space to apply between items. It can set 1 spacing size for all breakpoints, or it can be used to set different spacing values at different viewport width breakpoints. */ spacingSize?: SpaceSize; /** * Which HTML tag to render the component with */ tag?: keyof React.ReactHTML; children?: React.ReactNode; } declare const Stack: ({ children, className, "data-cy": dataCy, spacingSize, tag: Tag }: StackProps) => React.JSX.Element; export default Stack;