declare const MANIFEST_FILENAME = "publication.json"; declare const TOC_FILENAME = "index.html"; declare const TOC_TITLE = "Table of Contents"; declare const COVER_HTML_FILENAME = "cover.html"; declare const COVER_HTML_IMAGE_ALT = "Cover image"; declare const XML_DECLARATION = ""; declare const EPUB_OUTPUT_VERSION = "3.0"; declare const EPUB_MIMETYPE = "application/epub+zip"; declare const EPUB_NS = "http://www.idpf.org/2007/ops"; declare const EPUB_CONTAINER_XML = "\n\n \n \n \n"; declare const EPUB_LANDMARKS_TITLE = "Landmarks"; declare const EPUB_LANDMARKS_TOC_ENTRY = "Table of Contents"; declare const EPUB_LANDMARKS_COVER_ENTRY = "Cover Page"; declare const CMYK_RESERVE_MAP_FILENAME = "cmyk-reserve-map.json"; declare const EMPTY_DATA_URI = "data:,"; declare const VIEWER_ROOT_PATH = "/__vivliostyle-viewer"; declare const CONTAINER_URL = "ghcr.io/vivliostyle/cli"; declare const CONTAINER_ROOT_DIR = "/data"; declare const CONTAINER_LOCAL_HOSTNAME = "host.docker.internal"; declare const DEFAULT_BROWSER_VERSIONS: { readonly chrome: { readonly linux: "146.0.7680.153"; readonly linux_arm: "146.0.7680.153"; readonly mac: "146.0.7680.153"; readonly mac_arm: "146.0.7680.153"; readonly win32: "146.0.7680.153"; readonly win64: "146.0.7680.153"; }; readonly chromium: { readonly linux: "1603217"; readonly linux_arm: "1603215"; readonly mac: "1603215"; readonly mac_arm: "1603217"; readonly win32: "1603213"; readonly win64: "1603210"; }; readonly firefox: { readonly linux: "stable_148.0.2"; readonly linux_arm: "stable_148.0.2"; readonly mac: "stable_148.0.2"; readonly mac_arm: "stable_148.0.2"; readonly win32: "stable_148.0.2"; readonly win64: "stable_148.0.2"; }; }; declare const DEFAULT_CONFIG_FILENAME = "vivliostyle.config.js"; declare const DEFAULT_PROJECT_TITLE = "My Title"; declare const DEFAULT_PROJECT_AUTHOR = "My Name"; declare const TEMPLATE_SETTINGS: readonly [{ readonly value: "minimal"; readonly label: "Minimal"; readonly hint: "Use a minimal template with empty content"; readonly template: "gh:vivliostyle/vivliostyle-cli/templates/minimal"; }, { readonly value: "basic"; readonly label: "Basic"; readonly hint: "Use a basic template with starter content"; readonly template: "gh:vivliostyle/vivliostyle-cli/templates/basic"; }, { readonly value: "basic-ja"; readonly label: "Basic (Japanese)"; readonly hint: "Use a basic template with starter content in Japanese"; readonly template: "gh:vivliostyle/vivliostyle-cli/templates/basic-ja"; }]; declare const TEMPLATE_DEFAULT_PACKAGE_JSON = "{\n \"name\": \"{{kebab title}}\",\n \"description\": \"{{proper title}}\",\n \"author\": \"{{author}}\",\n \"version\": \"0.0.0\",\n \"type\": \"module\",\n \"private\": true,\n \"scripts\": {\n \"build\": \"vivliostyle build\",\n \"preview\": \"vivliostyle preview\"\n },\n \"dependencies\": {\n \"@vivliostyle/cli\": \"{{cliVersion}}\"\n }\n}\n"; declare const TEMPLATE_DEFAULT_VIVLIOSTYLE_CONFIG_JS = "// @ts-check\nimport { defineConfig } from '@vivliostyle/cli';\n\nexport default defineConfig({\n title: \"{{proper title}}\",\n author: \"{{author}}\",\n {{#if language}}\n language: \"{{language}}\",\n {{/if}}\n {{#if size}}\n size: \"{{size}}\",\n {{/if}}\n {{#if theme}}\n theme: {{json theme}},\n {{/if}}\n {{#if browser}}\n browser: \"{{browser.type}}{{#if browser.tag}}@{{browser.tag}}{{/if}}\",\n {{/if}}\n image: \"ghcr.io/vivliostyle/cli:{{cliVersion}}\",\n entry: [\"manuscript.md\"],\n});\n"; declare const LANGUAGES: { aa: string; ab: string; af: string; ak: string; am: string; an: string; ar: string; 'ar-001': string; as: string; az: string; ba: string; be: string; bg: string; bm: string; bn: string; bo: string; br: string; bs: string; ca: string; ce: string; co: string; cs: string; cu: string; cv: string; cy: string; da: string; de: string; 'de-AT': string; 'de-CH': string; dv: string; dz: string; ee: string; el: string; en: string; 'en-AU': string; 'en-CA': string; 'en-GB': string; 'en-US': string; eo: string; es: string; 'es-419': string; 'es-ES': string; 'es-MX': string; et: string; eu: string; fa: string; 'fa-AF': string; ff: string; fi: string; fo: string; fr: string; 'fr-CA': string; 'fr-CH': string; fy: string; ga: string; gd: string; gl: string; gn: string; gu: string; gv: string; ha: string; he: string; hi: string; 'hi-Latn': string; hr: string; ht: string; hu: string; hy: string; ia: string; id: string; ie: string; ig: string; ii: string; io: string; is: string; it: string; iu: string; ja: string; jv: string; ka: string; ki: string; kk: string; kl: string; km: string; kn: string; ko: string; ks: string; ku: string; kw: string; ky: string; la: string; lb: string; lg: string; ln: string; lo: string; lt: string; lu: string; lv: string; mg: string; mi: string; mk: string; ml: string; mn: string; mr: string; ms: string; mt: string; my: string; nb: string; nd: string; ne: string; nl: string; 'nl-BE': string; nn: string; no: string; nr: string; nv: string; ny: string; oc: string; om: string; or: string; os: string; pa: string; pl: string; ps: string; pt: string; 'pt-BR': string; 'pt-PT': string; qu: string; rm: string; rn: string; ro: string; 'ro-MD': string; ru: string; rw: string; sa: string; sc: string; sd: string; se: string; sg: string; si: string; sk: string; sl: string; sn: string; so: string; sq: string; sr: string; ss: string; st: string; su: string; sv: string; sw: string; 'sw-CD': string; ta: string; te: string; tg: string; th: string; ti: string; tk: string; tn: string; to: string; tr: string; ts: string; tt: string; ug: string; uk: string; ur: string; uz: string; ve: string; vi: string; vo: string; wa: string; wo: string; xh: string; yi: string; yo: string; za: string; zh: string; 'zh-Hans': string; 'zh-Hant': string; zu: string; }; export { CMYK_RESERVE_MAP_FILENAME, CONTAINER_LOCAL_HOSTNAME, CONTAINER_ROOT_DIR, CONTAINER_URL, COVER_HTML_FILENAME, COVER_HTML_IMAGE_ALT, DEFAULT_BROWSER_VERSIONS, DEFAULT_CONFIG_FILENAME, DEFAULT_PROJECT_AUTHOR, DEFAULT_PROJECT_TITLE, EMPTY_DATA_URI, EPUB_CONTAINER_XML, EPUB_LANDMARKS_COVER_ENTRY, EPUB_LANDMARKS_TITLE, EPUB_LANDMARKS_TOC_ENTRY, EPUB_MIMETYPE, EPUB_NS, EPUB_OUTPUT_VERSION, LANGUAGES, MANIFEST_FILENAME, TEMPLATE_DEFAULT_PACKAGE_JSON, TEMPLATE_DEFAULT_VIVLIOSTYLE_CONFIG_JS, TEMPLATE_SETTINGS, TOC_FILENAME, TOC_TITLE, VIEWER_ROOT_PATH, XML_DECLARATION };