import * as ko from 'knockout'; export declare class WizardAction { constructor(handler: () => void, text: string); isVisible: ko.Observable | ko.Computed; isDisabled: ko.Observable | ko.Computed; handler: () => void; text: string; }