import * as React from 'react';
import { IEditorProps } from './IEditorProps';
import { IEditorState } from './IEditorState';
export default class Editor extends React.Component<IEditorProps, IEditorState> {
    constructor(props: IEditorProps);
    componentDidMount(): void;
    componentDidUpdate(prevProps: IEditorProps, prevState: IEditorState): void;
    render(): JSX.Element;
    private _onColorSelect;
    private _onStatusValueChange;
    private _saveChanges;
    private _cancelChanges;
    private _onStatusRemoveClick;
    private _calculateAvailableColors;
}
