import type { ComponentProps } from "react"; import { ChipLabel, ChipRoot } from "./chip"; export declare const Chip: (({ children, className, color, size, variant, ...props }: import("./chip").ChipRootProps & Omit>) => import("react/jsx-runtime").JSX.Element) & { Root: ({ children, className, color, size, variant, ...props }: import("./chip").ChipRootProps & Omit>) => import("react/jsx-runtime").JSX.Element; Label: ({ children, className, ...props }: import("./chip").ChipLabelProps & Omit>) => import("react/jsx-runtime").JSX.Element; }; export type Chip = { Props: ComponentProps; RootProps: ComponentProps; LabelProps: ComponentProps; }; export { ChipRoot, ChipLabel }; export type { ChipRootProps, ChipRootProps as ChipProps, ChipLabelProps } from "./chip"; export { chipVariants } from "@heroui/styles"; export type { ChipVariants } from "@heroui/styles";