import { Action } from 'types/actions';
export declare const EDITOR_PROP_CHANGED = "EDITOR_PROP_CHANGED";
export type PropChangedAction = (propName: string, newValue: unknown, oldValue: unknown) => Action<string, {
    newValue: unknown;
    oldValue: unknown;
}>;
export declare const propChanged: PropChangedAction;
