import React from "react"; import { ViewStyle } from "react-native"; declare type SizeTypes = "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl"; declare const Space: React.FC<{ size?: SizeTypes | number; children?: any; style?: ViewStyle; }>; export default Space; //# sourceMappingURL=Space.d.ts.map