import React from 'react'; import type { SketchPickerProps } from 'react-color'; import type { PopoverProps } from 'antd'; import type { ProFormFieldItemProps } from '../../interface'; declare type ColorPickerProps = SketchPickerProps & { value?: string; onChange?: (color: string) => void; }; export declare type ProFormColorPickerProps = ProFormFieldItemProps & { popoverProps?: PopoverProps; colors?: string[]; }; declare const _default: React.ForwardRefExoticComponent<{ fieldProps?: (import("../../interface").FieldProps & SketchPickerProps & { value?: string | undefined; onChange?: ((color: string) => void) | undefined; }) | undefined; placeholder?: string | string[] | undefined; secondary?: boolean | undefined; allowClear?: boolean | undefined; disabled?: boolean | undefined; width?: number | "sm" | "md" | "xl" | "xs" | "lg" | undefined; proFieldProps?: import("ls-pro-utils").ProFieldProps | undefined; footerRender?: import("../../interface").LightFilterFooterRender | undefined; } & Omit & import("../../interface").ExtendsProps & { popoverProps?: PopoverProps | undefined; colors?: string[] | undefined; } & React.RefAttributes>; export default _default;