import type { ChipVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
import React from "react";
interface ChipRootProps extends Omit<ComponentPropsWithRef<"div">, "type" | "color">, ChipVariants {
    className?: string;
    children: React.ReactNode;
}
declare const ChipRoot: ({ children, className, color, size, variant, ...props }: ChipRootProps) => import("react/jsx-runtime").JSX.Element;
interface ChipLabelProps extends ComponentPropsWithRef<"span"> {
    className?: string;
}
declare const ChipLabel: ({ children, className, ...props }: ChipLabelProps) => import("react/jsx-runtime").JSX.Element;
export { ChipRoot, ChipLabel };
export type { ChipRootProps, ChipLabelProps };
