import { ASTNode } from './types/nodeTypes';
import TokenExecutor from './tokenExecutor';
import '../tokenizer/types';

declare class StatementList {
    private _tokenExecutor;
    constructor(tokenExecutor: TokenExecutor);
    getInitialStatementList(): ASTNode;
    getStatementList(stopLookaheadType: string): ASTNode[];
}

export { StatementList as default };
