import { I18nRuntime, I18nDictionary } from '@tutti-os/ui-i18n-runtime'; type WorkspaceFileManagerI18nLocale = "en" | "zh-CN"; declare const workspaceFileManagerI18nNamespace = "workspaceFileManager"; declare const workspaceFileManagerEn: { readonly backLabel: "Back"; readonly arrangeApplicationLabel: "Application"; readonly arrangeCreatedLabel: "Created"; readonly arrangeDateAddedLabel: "Date Added"; readonly arrangeKindLabel: "Kind"; readonly arrangeLastOpenedLabel: "Last Opened"; readonly arrangeMenuLabel: "Arrange"; readonly arrangeNoneLabel: "None"; readonly breadcrumbRootLabel: "workspace"; readonly cancelLabel: "Cancel"; readonly closeLabel: "Close"; readonly copyLabel: "Copy"; readonly copyPathLabel: "Copy path"; readonly copyPathSuccessTitle: "Path copied"; readonly copySuccessTitle: "Copied to clipboard"; readonly createActionLabel: "Create"; readonly createDirectoryLabel: "New folder"; readonly createDirectoryPlaceholder: "Folder name"; readonly createFileLabel: "New file"; readonly createFilePlaceholder: "File name"; readonly createNameInvalid: "Use a valid name without path separators"; readonly createNameRequired: "Enter a name to continue"; readonly createNameTooLong: "Names must be 255 UTF-8 bytes or fewer"; readonly clearSearchLabel: "Clear search"; readonly deleteConfirmDescription: "Delete {{name}} from this workspace?"; readonly deleteLabel: "Delete"; readonly deletingLabel: "Deleting..."; readonly downloadFailedTitle: "Download failed"; readonly downloadLabel: "Download"; readonly emptyDirectory: "No visible files in this folder"; readonly collapseFolderLabel: "Collapse folder"; readonly expandFolderLabel: "Expand folder"; readonly forwardLabel: "Forward"; readonly loading: "Loading"; readonly modifiedLabel: "Modified"; readonly nameLabel: "Name"; readonly noSearchResults: "No files matched your search"; readonly openFailedTitle: "Open failed"; readonly openLabel: "Open"; readonly openInAppBrowserLabel: "Tutti built-in browser"; readonly openInDefaultBrowserLabel: "Default Browser"; readonly openInFileViewerLabel: "File viewer"; readonly openWithLabel: "Open With"; readonly openWithLoadingLabel: "Loading apps..."; readonly openWithOtherLabel: "Other..."; readonly openWithOtherPickerPrompt: "Choose an application to open this file:"; readonly revealInFileExplorerLabel: "Reveal in File Explorer"; readonly revealInFileManagerLabel: "Reveal in File Manager"; readonly revealInFinderLabel: "Reveal in Finder"; readonly shareLabel: "Share"; readonly unknownErrorMessage: "Something went wrong. Please try again."; readonly previewActionsLabel: "File actions"; readonly previewBinary: "This file looks binary, so the preview stays read-only for now."; readonly previewDecodeFailed: "We couldn't decode this file as UTF-8 text for preview."; readonly previewDirectoryLabel: "Folder"; readonly previewEmptyLabel: "Select a file or folder to view details"; readonly previewFileTooLarge: "This file is larger than {{maxSize}}, so inline preview is disabled."; readonly previewLoadingLabel: "Loading preview..."; readonly previewTooLarge: "This text file is larger than {{maxSize}}, so inline preview is disabled."; readonly previewUnavailableDownloadBody: "Download {{name}} to open it in another environment."; readonly previewUnavailableOpenBody: "Open {{name}} in your local app instead."; readonly previewUnavailableTitle: "Can't preview this file"; readonly previewUnsupported: "Inline preview isn't available for this file type yet."; readonly revealFailedTitle: "Could not reveal in file manager"; readonly renameActionLabel: "Rename"; readonly renameLabel: "Rename"; readonly renamePlaceholder: "New name"; readonly refreshLabel: "Refresh"; readonly resizeLocationsSidebar: "Resize locations sidebar"; readonly resizePreviewPanel: "Resize file details panel"; readonly retryLabel: "Retry"; readonly searchPlaceholder: "Search files"; readonly searchResultsLabel: "Search results"; readonly sizeLabel: "Size"; readonly unsupportedViewBody: "Opening {{name}} from the file manager is not supported in this desktop build yet."; readonly unsupportedViewTitle: "Open not available yet"; readonly layoutIconViewLabel: "Icon view"; readonly layoutIconViewTooltipLabel: "Icon mode"; readonly layoutListViewLabel: "List view"; readonly layoutListViewTooltipLabel: "List mode"; }; type WorkspaceFileManagerI18nKey = keyof typeof workspaceFileManagerEn; type WorkspaceFileManagerI18nRuntime = I18nRuntime; declare const workspaceFileManagerI18nResources: Record; declare function createWorkspaceFileManagerI18nRuntime(runtime: I18nRuntime): WorkspaceFileManagerI18nRuntime; declare function resolveRevealInFolderLabel(copy: WorkspaceFileManagerI18nRuntime, platform: string): string; export { type WorkspaceFileManagerI18nKey as W, type WorkspaceFileManagerI18nRuntime as a, workspaceFileManagerI18nResources as b, createWorkspaceFileManagerI18nRuntime as c, resolveRevealInFolderLabel as r, workspaceFileManagerI18nNamespace as w };