import React from 'react';
import type { StyleProp, ViewStyle } from 'react-native';
declare type Props = {
    color?: string;
    style?: StyleProp<ViewStyle>;
};
declare const ClearIcon: React.FC<Props>;
export default ClearIcon;
