import { Token } from "./token-type";
export declare type PolishList = {
    type: Token;
    value: string;
}[];
export declare const PolishNotation: (tokens: PolishList, customTokens: Map<Token, string>) => PolishList;
export declare const PolishGenerator: (polish: any) => Generator<any, any, unknown>;
