import type { Flags, Scriptlet } from '../types'; export declare function formatScriptlet(focusedScriptlet: Scriptlet, inputs: string[], flag?: Flags): { formattedScriptlet: string; remainingInputs: string[]; }; export declare let parseMarkdownAsScriptlets: (markdown: string, filePath?: string) => Promise; export declare let parseScriptletsFromPath: (filePath: string) => Promise; export declare let parseScriptlets: () => Promise;