import { SpruceSchemas } from './../../../.spruce/schemas/schemas.types';
import AbstractAction from '../../AbstractAction';
import { FeatureActionResponse } from '../../features.types';
type OptionsSchema = SpruceSchemas.SpruceCli.v2020_07_22.OnboardOptionsSchema;
type Options = SpruceSchemas.SpruceCli.v2020_07_22.OnboardOptions;
export default class ListenAction extends AbstractAction<OptionsSchema> {
    optionsSchema: OptionsSchema;
    invocationMessage: string;
    execute(_options: Options): Promise<FeatureActionResponse>;
    private getParent;
}
export {};
