/**
 * @packageDocumentation
 *
 * This file defines the translations map for the `i18n` module.
 */
import type { PluginTypesBase } from '../../Plugin/PluginTypesBase.cjs';
import type { TranslationsMap } from '../i18n.cjs';
/**
 * The default language.
 */
export declare const DEFAULT_LANGUAGE: keyof typeof translationsMapImpl;
declare const translationsMapImpl: {
    readonly en: {
        readonly obsidianDevUtils: {
            readonly asyncWithNotice: {
                readonly milliseconds: "milliseconds...";
                readonly operation: "Operation";
                readonly runningFor: "Running for";
                readonly terminateOperation: "You can terminate the operation by clicking the button below, but be aware it might leave the vault in an inconsistent state.";
                readonly timedOut: "The operation timed out after {{duration}} milliseconds.";
            };
            readonly buttons: {
                readonly cancel: "Cancel";
                readonly ok: "OK";
            };
            readonly callout: {
                readonly loadContent: "Load content for callout";
            };
            readonly dataview: {
                readonly itemsPerPage: "Items per page:";
                readonly jumpToPage: "Jump to page:";
                readonly pageHeader: "Page {{pageNumber}} of {{totalPages}}, Total items: {{totalItems}}";
            };
            readonly metadataCache: {
                readonly getBacklinksForFilePath: "Get backlinks for {{filePath}}";
            };
            readonly notices: {
                readonly attachmentIsStillUsed: "Attachment {{attachmentPath}} is still used by other notes. It will not be deleted.";
                readonly unhandledError: "An unhandled error occurred. Please check the console for more information.";
            };
            readonly queue: {
                readonly flushQueue: "Flush queue";
            };
            readonly renameDeleteHandler: {
                readonly handleDelete: "Handle delete: {{filePath}}";
                readonly handleOrphanedRenames: "Handle orphaned renames";
                readonly handleRename: "Handle rename: {{oldPath}} -> {{newPath}}";
                readonly updatedLinks: "Updated {{linksCount}} links in {{filesCount}} files.";
            };
            readonly vault: {
                readonly processFile: "Process file {{filePath}}";
            };
        };
    };
};
/**
 * The default translations map.
 */
export declare const defaultTranslationsMap: TranslationsMap<PluginTypesBase>;
export {};
