import { Action2 } from "../../../platform/actions/common/actions.js"; import { ServicesAccessor } from "../../../platform/instantiation/common/instantiation.js"; export declare const inRecentFilesPickerContextKey = "inRecentFilesPicker"; declare abstract class BaseOpenRecentAction extends Action2 { private readonly removeFromRecentlyOpened; private readonly dirtyRecentlyOpenedFolder; private readonly dirtyRecentlyOpenedWorkspace; private readonly windowOpenedRecentlyOpenedFolder; private readonly windowOpenedRecentlyOpenedWorkspace; private readonly activeWindowOpenedRecentlyOpenedFolder; private readonly activeWindowOpenedRecentlyOpenedWorkspace; protected abstract isQuickNavigate(): boolean; run(accessor: ServicesAccessor): Promise; private toQuickPick; } export declare class OpenRecentAction extends BaseOpenRecentAction { static ID: string; constructor(); protected isQuickNavigate(): boolean; } export declare class ReloadWindowAction extends Action2 { static readonly ID = "workbench.action.reloadWindow"; constructor(); run(accessor: ServicesAccessor): Promise; } export {};