type DaviIconProps = {
    x: number;
    y: number;
    color: string;
    size: number;
    onClick?: () => void;
};
declare const DaviIcon: ({ x, y, color, size, onClick }: DaviIconProps) => import("react/jsx-runtime").JSX.Element;
export default DaviIcon;
