/** @tossdocs-ignore */ /** @jsxImportSource @emotion/react */ import { ComponentPropsWithRef } from 'react'; import { FlexOptions } from './flex'; import { GutterOptions } from './gutter'; import { AsProps, StringElementType } from './types'; declare type StackOptions = Pick & Partial> & { gutter?: number; }; declare type StackProps = AsProps & StackOptions; declare type StackComponentType = (props: StackProps & Partial, 'ref'>>) => JSX.Element | null; declare type StackType = StackComponentType & { Vertical: StackComponentType; Horizontal: StackComponentType; }; export declare const Stack: StackType; export {};