import type { ComponentProps } from "react"; import { ColorInputGroupInput, ColorInputGroupPrefix, ColorInputGroupRoot, ColorInputGroupSuffix } from "../color-input-group"; import { ColorFieldRoot } from "./color-field"; export declare const ColorField: typeof ColorFieldRoot & { Root: typeof ColorFieldRoot; Group: ({ children, className, fullWidth, variant, ...props }: import("../color-input-group").ColorInputGroupRootProps) => import("react/jsx-runtime").JSX.Element; Input: ({ className, ...props }: import("../color-input-group").ColorInputGroupInputProps) => import("react/jsx-runtime").JSX.Element; Prefix: ({ children, className, ...props }: import("../color-input-group").ColorInputGroupPrefixProps & Omit>) => import("react/jsx-runtime").JSX.Element; Suffix: ({ children, className, ...props }: import("../color-input-group").ColorInputGroupSuffixProps & Omit>) => import("react/jsx-runtime").JSX.Element; }; export type ColorField = { Props: ComponentProps; RootProps: ComponentProps; GroupProps: ComponentProps; InputProps: ComponentProps; PrefixProps: ComponentProps; SuffixProps: ComponentProps; }; export { ColorFieldRoot }; export type { ColorFieldRootProps, ColorFieldRootProps as ColorFieldProps, ColorValue, } from "./color-field"; export { colorFieldVariants } from "@heroui/styles"; export type { ColorFieldVariants } from "@heroui/styles";