import { ThemeIcon } from "../../../../../base/common/themables.js"; import { Command } from "../../../../common/languages.js"; export type InlineSuggestAlternativeAction = { label: string; icon: ThemeIcon; command: Command; count: Promise; }; export declare namespace InlineSuggestAlternativeAction { function toString(action: InlineSuggestAlternativeAction | undefined): string | undefined; }