import { EditorWidgetTypedInputTypeDefinition } from 'node-red'; /** * default values to be used for nodes in editor */ export declare const settingsHigh: { color: string; category: string; }; export declare const settingsLow: { color: string; category: string; }; /** * Used in a node-red validator for a typedInput that expects a EUI * * @param selector looks up the type of a typeInput * @returns */ export declare function euiValidator(selector: (this: T) => true | 'msg' | 'flow' | 'global' | 'eui'): (this: T, val: string) => boolean; /** * passed into a typedInput to add an eui as an option */ export declare const typedInputEUI: EditorWidgetTypedInputTypeDefinition;