declare class AppendToGitignoreService { get gitignore(): string; get envFormat(): string; get flaskenvFormat(): string; get envProjectFormat(): string; get envVaultFormat(): string; missing(): boolean; append(str: string): void; touch(): void; read(): string; run(): Promise; } export { AppendToGitignoreService };