import { FileInfo, Node } from '../tree'; /** * This is an abstraction between the Jess CST parser * and the Jess AST. Essentially, this forwards parsing to * the @jesscss/parser package, and, if successful, builds an * AST out of the returned CST. */ export declare const parse: (input: string, fileInfo?: FileInfo) => Promise;