import React from 'react';
import { ISectionProps } from './section';
export interface IStackProps extends ISectionProps {
    /** h:horizontal, v:vertical */
    direction: "h" | "v";
    wrap?: boolean;
    nogap?: boolean;
    /** align items */
    centered?: boolean;
    /** justify items */
    justified?: boolean | "centered" | "evenly" | "between" | "around";
    /** flex-direction reversed */
    reversed?: boolean;
}
export declare const Stack: (props: IStackProps & {
    children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null;
