import { ObjectOrChildModel, PopupModel, ResizableMode, Widget } from '../index';
export interface WidgetPopupModel<TContent extends Widget = Widget> extends PopupModel {
    /**
     * Default is false.
     */
    closable?: boolean;
    /**
     * Default is false.
     */
    movable?: boolean;
    /**
     * Default is false.
     */
    resizable?: boolean;
    /**
     * Default none.
     */
    resizeModes?: ResizableMode[];
    /**
     * The content of the WidgetPopup
     */
    content?: ObjectOrChildModel<TContent>;
}
//# sourceMappingURL=WidgetPopupModel.d.ts.map