import { LayoutState } from '../../AdaptableState/LayoutState';
import { BaseContext } from '../../types';
/**
 * EventInfo returned by LayoutChanged event
 */
export interface LayoutChangedInfo extends BaseContext {
    /**
     * What caused Layout State to change
     */
    actionName: string;
    /**
     * Previous Layout State
     */
    oldLayoutState: LayoutState | undefined;
    /**
     * Current Layout State
     */
    newLayoutState: LayoutState;
}
