import type { DOMRenderProps } from "../../utils/dom"; import type { ChipVariants } from "@heroui/styles"; import type { ReactNode } from "react"; import React from "react"; interface ChipRootProps extends DOMRenderProps { children: ReactNode; className?: string; /** Chip color. */ color?: ChipVariants["color"]; /** Chip size. */ size?: ChipVariants["size"]; /** Chip variant. */ variant?: ChipVariants["variant"]; } declare const ChipRoot: ({ children, className, color, size, variant, ...props }: ChipRootProps & Omit>) => import("react/jsx-runtime").JSX.Element; interface ChipLabelProps extends DOMRenderProps { children?: ReactNode; className?: string; } declare const ChipLabel: ({ children, className, ...props }: ChipLabelProps & Omit>) => import("react/jsx-runtime").JSX.Element; export { ChipRoot, ChipLabel }; export type { ChipRootProps, ChipLabelProps };