import { ScopeState } from './scope'; import * as Types from './types'; import { ParserState, Context } from './common'; export declare function parseModuleItemList(parser: ParserState, context: Context, scope: ScopeState): Types.Statement[]; export declare function parseModuleItem(parser: ParserState, context: Context, scope: ScopeState): Types.Statement; export declare function parseImportDeclaration(parser: ParserState, context: Context, scope: ScopeState): any; export declare function parseModuleSpecifier(parser: ParserState, context: Context): Types.Literal; export declare function parseExportDefault(parser: ParserState, context: Context, scope: ScopeState, start: number, line: number, column: number): Types.ExportDefaultDeclaration; export declare function parseExportDeclaration(parser: ParserState, context: Context, scope: ScopeState): any; //# sourceMappingURL=module.d.ts.map