import { BaseAction } from './BaseAction';
import { SetupOptions } from '../types';
export declare class PrettierAction extends BaseAction {
    name: string;
    description: string;
    canExecute(projectPath: string): Promise<boolean>;
    execute(projectPath: string, options: SetupOptions): Promise<boolean>;
    rollback(projectPath: string): Promise<boolean>;
}
//# sourceMappingURL=PrettierAction.d.ts.map