import { AbstractLanguageFacts } from './base'; /** * python 中表示代码块的节点类型 */ export declare const pythonBlockCodeTypes: string[]; export declare class PythonLanguageFacts implements AbstractLanguageFacts { name: "python"; listCommentStyle: string; blockCommentStyle: { start: string; end: string; linePrefix: string; }; provideCodeBlocks(): Set; isCodeBlock(type: string): boolean; } //# sourceMappingURL=python.d.ts.map