import type { ReactNode, SVGProps } from 'react';
export interface MatchaIconProps extends SVGProps<SVGSVGElement> {
size?: number;
color?: string;
children?: ReactNode;
}
export declare function MatchaIcon(props: MatchaIconProps): import("@emotion/react/jsx-runtime").JSX.Element;