import { Command } from '../../ast/entity/command'; import { Constant } from '../../ast/entity/constant'; import { SourceContext } from '../../ast/entity/source'; export declare class ReplaceCommand extends Command { protected pattern: string; protected replacement?: string; protected flags?: string; constructor(constant: Constant, pattern: string, replacement?: string, flags?: string); execute(context: SourceContext): void; }