import { Field, FieldConfig } from '../field';
import { GlobalConfig, SelectiveEditor } from '../editor';
import { TemplateResult } from 'lit-html';
import { DeepObject } from '../../utility/deepObject';
import { Types } from '../types';
export declare type ColorFieldConfig = FieldConfig;
export declare class ColorField extends Field {
    config: ColorFieldConfig;
    constructor(types: Types, config: ColorFieldConfig, globalConfig: GlobalConfig, fieldType?: string);
    templateInput(editor: SelectiveEditor, data: DeepObject): TemplateResult;
}
