import type { CSSProperties } from 'react'; import React from 'react'; interface Props { className?: string; color: string; height: number; width: number; style?: CSSProperties; } export declare function Head({ className, color, height, width, style }: Props): React.JSX.Element; export {};