/// <reference types="styled-components" />
import React from 'react';
export interface Props {
    color?: string;
    width?: string;
    height?: string;
    title: string;
    theme?: any;
}
export declare const MenuIcon: React.ForwardRefExoticComponent<Pick<Props, "title" | "color" | "height" | "width"> & {
    theme?: any;
}>;
export default MenuIcon;
