import React from 'react';
import { IStackProps } from './stack';
interface IProps extends Omit<IStackProps, "direction" | "justified"> {
    /** horizontal align items center */
    centered?: boolean;
    /** align items vertical centered */
    vCentered?: boolean;
    /** vertical space items evenly */
    vSpaced?: boolean | "evenly" | "between" | "around";
}
export declare const Vertical: (props: IProps & {
    children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>) => React.
/** vertical space items evenly */
JSX /** vertical space items evenly */.Element | null;
export {};
