/** * Provides a component that offers the ability to pick a color, and which maintains a list * of recent colors. */ export declare const ColorPickerComponent: { render(): import("vue").VNode; props: { /** * The property name in the data that this component manages. Required. */ propertyName: StringConstructor; /** * Maximum number of color swatches to show, defaults to 10 */ maxColors: { type: NumberConstructor; default: number; }; }; data: () => { CLASS_COLOR_PICKER: string; CLASS_COLOR_PICKER_SWATCHES: string; CLASS_COLOR_PICKER_SWATCH: string; colorInput: HTMLInputElement; swatches: Array; }; mounted(): void; methods: { addColor: (v: string) => void; colorPicked: () => void; selectSwatch: (c: string) => void; setCurrentColor: () => void; }; };