export type OperationTypes = { PUSH: [string, [string, string?][]?]; PUSH_TO: [string, [string, string?][]?]; POP: [number?]; POP_TO: ['<' | '<=', string | string[]]; GOTO: [string, [string, string?][]?]; }; export declare class Operation { type: T; args: OperationTypes[T]; constructor(type: T, args: OperationTypes[T]); } //# sourceMappingURL=searchop.d.ts.map