/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import type { VcsConfig, VcsPreset } from '@docusaurus/types'; export declare const VcsPresetNames: VcsPreset[]; export declare function findVcsPreset(presetName: string): VcsConfig | undefined; export declare function getVcsPreset(presetName: VcsPreset): VcsConfig; export declare const TEST_VCS: { initialize: (params: import("@docusaurus/types").VscInitializeParams) => void; getFileCreationInfo: (filePath: string) => Promise; getFileLastUpdateInfo: (filePath: string) => Promise; CREATION_INFO: import("@docusaurus/types").VcsChangeInfo; LAST_UPDATE_INFO: import("@docusaurus/types").VcsChangeInfo; UNTRACKED_FILE_PATH: string; }; //# sourceMappingURL=vcs.d.ts.map