import React from 'react';
import { TypeProps } from "./index";
export type Props = {
    type: TypeProps;
    width?: string | number;
    height?: string | number;
};
export declare const LogoIcon: React.MemoExoticComponent<({ type, width, height }: Props) => React.JSX.Element>;
