import React from "react"; import { PartialColorProps } from "../theme"; export interface LegendProps extends PartialColorProps, Omit, "color"> { /** * 表示するアイコンを指定します。指定しない場合、デフォルトのアイコンを用いられます。 */ icon?: React.ReactNode; children: React.ReactNode; } export declare const Legend: ({ color, icon, children, ...props }: LegendProps) => import("@emotion/react/jsx-runtime").JSX.Element;