import type { CodeAction, Diagnostic } from '../types.js'; /** * Return quick-fix code actions for SSJS diagnostics. Currently offers an * "insert polyfill" action for `ssjs/polyfill-required` diagnostics, inserting * the verified polyfill source (from ssjs-data) at the top of the document. * @param text - Full document text. * @param uri - Document URI. * @param diagnostics - Diagnostics to generate actions for. * @returns Array of code actions. */ export declare function getSsjsCodeActions(text: string, uri: string, diagnostics: Diagnostic[]): CodeAction[]; //# sourceMappingURL=ssjs.d.ts.map