import { default as React } from 'react'; import { ColorVariant } from './constants'; type ColorProps = { children: React.ReactNode; variant: ColorVariant; className?: string; }; declare const Color: { ({ children, variant, className }: ColorProps): import("react/jsx-runtime").JSX.Element; Row: ({ children, title }: ColorRowProps) => import("react/jsx-runtime").JSX.Element; Item: ({ name, value }: ColorItemProps) => import("react/jsx-runtime").JSX.Element; }; type ColorRowProps = { children: React.ReactNode; title?: string; }; /** @deprecated Use a single string value instead */ type ColorItemValueLegacy = { light: string; dark: string; }; type ColorItemProps = { value: string | ColorItemValueLegacy; name?: string; }; export { Color }; export type { ColorItemProps, ColorProps, ColorRowProps }; //# sourceMappingURL=color.d.ts.map