import { Command, ObservableLike, ReadOnlyProperty } from '../../../WebRx'; import { BaseViewModel } from '../../React'; export declare class ModalDialogViewModel extends BaseViewModel { static displayName: string; readonly context: ReadOnlyProperty; readonly isVisible: ReadOnlyProperty; readonly show: Command; readonly hide: Command; constructor(context: ObservableLike); hideOnExecute(command: Command): Command; }