import React from 'react'; import { View, StyleProp, ViewStyle } from 'react-native'; import type { $RemoveChildren, DimensionValue } from '../../types'; type Props = $RemoveChildren & { size?: DimensionValue; style?: StyleProp; }; declare const Hourglass: ({ size, style, ...rest }: Props) => React.JSX.Element; export default Hourglass; //# sourceMappingURL=Hourglass.d.ts.map