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