import { Command } from './Command'; import { BusEvent, BusEventOptions } from '../events'; export interface MinimizeCommandOptions extends BusEventOptions { size?: number; minimize?: boolean; } export declare class MinimizeCommand extends Command { protected _target: T; protected _options: MinimizeCommandOptions; protected _parent: BusEvent | null; options: MinimizeCommandOptions; constructor(_target: T, _options?: MinimizeCommandOptions, _parent?: BusEvent | null); readonly size: number; readonly minimize: boolean | undefined; }