import React from 'react'; import type { EngineInterface, Placement } from '@aomao/engine'; import { ColorPickerProps } from './picker'; import './index.css'; export declare type ColorButtonProps = { name: string; content: string | ((color: string, stroke: string, disabled?: boolean) => React.ReactNode); buttonTitle?: string; dropdownTitle?: string; command?: { name: string; args: Array; } | Array; autoExecute?: boolean; engine?: EngineInterface; disabled?: boolean; placement?: Placement; } & ColorPickerProps; declare const ColorButton: React.FC; export default ColorButton;