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 Compass({ size, color, style }: Props): React.JSX.Element; export default Compass; //# sourceMappingURL=Compass.d.ts.map