import * as react from 'react'; import { ReactNode } from 'react'; import { ViewProps, ViewStyle, View } from 'react-native'; import { SpacingKey } from '@plyxui/core'; type StackDirection = "row" | "column" | "row-reverse" | "column-reverse"; type StackAlign = "start" | "center" | "end" | "stretch" | "baseline"; type StackJustify = "start" | "center" | "end" | "between" | "around" | "evenly"; interface StackProps extends Omit { direction?: StackDirection; gap?: SpacingKey; align?: StackAlign; justify?: StackJustify; wrap?: boolean; style?: ViewStyle; children?: ReactNode; } declare const Stack: react.ForwardRefExoticComponent>; export { Stack, type StackAlign, type StackDirection, type StackJustify, type StackProps };