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