import * as React from "react"; import { type ViewProps, type FlexStyle } from "react-native"; type StackProps = { gap?: number; padding?: number; paddingHorizontal?: number; flex?: number; paddingVertical?: number; borderBottomWidth?: number; borderTopWidth?: number; borderRightWidth?: number; borderLeftWidth?: number; borderColor?: string; alignItems?: FlexStyle["alignItems"]; justifyContent?: FlexStyle["justifyContent"]; alignContent?: FlexStyle["alignContent"]; alignSelf?: FlexStyle["alignSelf"]; } & ViewProps; export declare const XStack: React.NamedExoticComponent; export declare const YStack: React.NamedExoticComponent; export {}; //# sourceMappingURL=Stacks.d.ts.map