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