import * as React from 'react'; import { Stack } from './Stack'; declare type StackProps = React.ComponentProps; declare type Props = { /** * 縦方向の揃え方を指定します。 */ justifyContent?: StackProps['justifyContent']; /** * 横方向の揃え方を指定します */ alignItems?: StackProps['alignItems']; } & Omit; /** * 縦方向(垂直方向)に等間隔でコンポーネントを並べます。 * * - `direction` が固定である以外は `Stack` と同一です * - 横方向(水平方向)に等間隔でコンポーネントを並べるには、 `HStack` を使用してください */ export declare const VStack: React.FC; export {};