import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; type Props = { size?: "XS" | "S" | "M" | "L" | "XL" | "XXL"; color?: string; style?: StyleProp; }; declare function Linux({ size, color, style }: Props): React.JSX.Element; export default Linux; //# sourceMappingURL=Linux.d.ts.map