import { type Node } from 'web-tree-sitter'; export interface ShellParserConfig { engineWasm: Uint8Array | ArrayBuffer; grammarWasm: Uint8Array | ArrayBuffer; } export interface ShellParser { parse(command: string): Node; } export declare function stripLineContinuation(command: string): string; export declare function createShellParser(config: ShellParserConfig): Promise; //# sourceMappingURL=parse.d.ts.map