import type { FlexContainerAllProps } from './Container';
export type VerticalProps = Omit<FlexContainerAllProps, 'direction'>;
declare function Vertical({ children, ...props }: VerticalProps): import("react/jsx-runtime").JSX.Element;
export default Vertical;
