import { Postprocessor } from './typing'; export default class Rule { static highestId: number; id: number; name: string; symbols: any[]; postprocess: Postprocessor; constructor(name: string, symbols: any[], postprocess: Postprocessor); }