import React from 'react'; import type { ViewStyle } from 'react-native'; interface StackProps { direction?: 'vertical' | 'horizontal'; gap?: number; align?: ViewStyle['alignItems']; justify?: ViewStyle['justifyContent']; wrap?: boolean; style?: ViewStyle; children?: React.ReactNode; testID?: string; } export declare function Stack({ direction, gap, align, justify, wrap, style, children, testID }: StackProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=stack.d.ts.map