import * as React from 'react'; import type { PropsWithChildren } from 'react'; import { type DimensionValue, type FlexStyle, type ViewProps } from 'react-native'; import { type GridValue } from '../utils'; export interface StackProps extends ViewProps { flex?: number; direction?: FlexStyle['flexDirection']; padding?: GridValue | [GridValue] | [GridValue, GridValue] | [GridValue, GridValue, GridValue, GridValue]; spacing?: GridValue; justify?: FlexStyle['justifyContent']; align?: FlexStyle['alignItems']; wrap?: FlexStyle['flexWrap']; borderRadius?: number; background?: string; grow?: number; shrink?: number; basis?: number; width?: number | DimensionValue; height?: number | DimensionValue; children?: React.ReactNode; } declare const Stack: ({ flex, direction, borderRadius, background, align, justify, padding, spacing, wrap, grow, shrink, basis, width, height, style, children, ...rest }: PropsWithChildren) => React.JSX.Element; export default Stack; //# sourceMappingURL=Stack.d.ts.map