/// <reference types="react" />
import * as React from 'react';
export interface LikeProps {
    fill: any;
    stroke: any;
}
/**
 * Like Icon
 */
export declare class Like extends React.Component<LikeProps, any> {
    render(): JSX.Element;
}
export default Like;
