import React from 'react'; import { IViewProps } from '../View'; declare type SpaceType = 'gutter' | '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; export declare type IStackProps = IViewProps & { children: JSX.Element[] | JSX.Element; divider?: JSX.Element; space?: number | SpaceType; reversed?: boolean; }; declare const Stack: (props: IStackProps & { direction?: 'column' | 'row'; }, ref?: any) => JSX.Element; export { Stack as StackMain }; declare const _default: React.MemoExoticComponent>, string | number | symbol> & import("styled-system").SpaceProps>, string | number | symbol> & import("styled-system").LayoutProps>> & import("styled-system").FlexboxProps>> & import("styled-system").PositionProps>> & import("../../../utils/customProps").customBorderProps & import("../../../utils/customProps").customExtraProps & import("../../../utils/customProps").customOutlineProps & import("../../../utils/customProps").customShadowProps & import("../../../utils/customProps").customLayoutProps & import("../../../utils/customProps").customTypographyProps & import("../../../utils/customProps").customBackgroundProps & import("../../../utils/customProps").customTransformProps & import("../../../utils/customProps").customFlexboxProps & import("../../../utils/customProps").customPositionProps & import("styled-system").BorderProps>, import("csstype").Property.BorderRadius> & import("../../../utils/customProps").SafeAreaProps & { children?: any; } & { children: JSX.Element | JSX.Element[]; divider?: JSX.Element | undefined; space?: number | "sm" | "md" | "lg" | "xl" | "xs" | "2xl" | "2xs" | "gutter" | undefined; reversed?: boolean | undefined; } & { direction?: "row" | "column" | undefined; } & React.RefAttributes>>; export default _default;