@chamn/engine
Version:
8 lines (7 loc) • 341 B
TypeScript
import { ColorPickerProps } from 'antd';
export type CustomColorPickerRef = {
updateColor: (color: string) => void;
};
export declare const CustomColorPicker: import('react').ForwardRefExoticComponent<Omit<ColorPickerProps, "onChange"> & {
onChange: (color: string) => void;
} & import('react').RefAttributes<CustomColorPickerRef>>;