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