import { StyledGraphicNode } from '../styledGraphicNode';
import { ControlObject } from './controlObject';
import { IControlGuide } from './iControlGuide';
/**
 * Control guide for drawing a frame around the active object on the control layer.
 */
export declare class SelectionFrame implements IControlGuide {
    /**
     * Constructor.
     */
    constructor();
    /**
     * Create the shapes that make up the control guide.
     * @param activeObject - The currently active control object.
     */
    redraw(activeObject: ControlObject): StyledGraphicNode;
}
