export declare class CommandMatcher { private readonly literals; constructor(deniedCommands: readonly string[]); matches(command: string): boolean; firstMatch(command: string): string | null; } //# sourceMappingURL=command-matcher.d.ts.map