import { Filesystem } from "../api/filesystem"; import { SqrlParserSourceOptions } from "../compile/SqrlParserState"; import { StatementAst } from "../ast/Ast"; export declare function statementsFromString(source: string, options?: { customFunctions?: Set; }): StatementAst[]; export declare function sourceOptionsFromFilesystem(filesystem: Filesystem, mainFilename: string, options?: { customFunctions?: Set; }): { statements: StatementAst[]; source: string; filesystem: Filesystem; }; export declare function sourceOptionsFromPath(path: string, options?: { customFunctions?: Set; }): SqrlParserSourceOptions;