import React from 'react';
export interface Props {
    color?: string;
    width?: number;
    height?: number;
}
export default function Remove({ color, width, height }: Props): React.JSX.Element;
