import AbstractAction from '../../AbstractAction';
import { FeatureActionResponse } from '../../features.types';
declare const optionsSchema: {
    id: string;
    description: string;
    fields: {};
};
type OptionsSchema = typeof optionsSchema;
export default class WatchAction extends AbstractAction<OptionsSchema> {
    commandAliases: string[];
    optionsSchema: OptionsSchema;
    invocationMessage: string;
    private skillName;
    private skillNamespace;
    execute(): Promise<FeatureActionResponse>;
    private popLastLine;
    private getPreviewUrl;
    private resetUi;
}
export {};
