import { Event } from "../Events"; /** * Indicates that the width of the properties panel has changed. */ export interface PropertiesPanelResizedEventData { /** * The new width of the properties panel in px. */ width: number; } export declare const createPropertiesPanelResizedEvent: (width: number) => Event; export declare const isPropertiesPanelResizedEvent: (event: Event) => event is Event;