import * as React from 'react'; import { ViewProps as RNViewProps } from 'react-native'; import { BoxProps } from '../Box'; export declare type LocalStackProps = { /** Sets the orientation of the stack component. */ orientation?: 'vertical' | 'horizontal'; /** Sets the spacing between the stack items. */ spacing?: string; }; export declare type StackProps = BoxProps & RNViewProps & LocalStackProps; export declare const Stack: React.ForwardRefExoticComponent & RNViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & LocalStackProps & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };