export declare let cmd: string; export declare let returnOrEnter: string; export declare const scriptsDbPath: string; export declare const timestampsPath: string; export declare const statsPath: string; export declare const prefsPath: string; export declare const promptDbPath: string; export declare const themeDbPath: string; export declare const userDbPath: string; export declare const tmpClipboardDir: string; export declare const tmpDownloadsDir: string; export declare const getMainScriptPath: () => string; export declare const kitDocsPath: string; export declare const KENV_SCRIPTS: string; export declare const KENV_APP: string; export declare const KENV_BIN: string; export declare const KIT_APP: string; export declare const KIT_APP_PROMPT: string; export declare const KIT_APP_INDEX: string; export declare const SHELL_TOOLS: string[]; /** * All valid scriptlet tool types. * This includes: * - Script/Kit tools: '', 'kit', 'ts', 'js' * - Transform/Template: 'transform', 'template' * - Action tools: 'open', 'edit', 'paste', 'type', 'submit' * - Shell tools: bash, sh, zsh, fish, powershell, pwsh, cmd * - Language interpreters: ruby, python, python3, perl, php, node, etc. */ export declare const VALID_TOOLS: readonly ["", "kit", "ts", "js", "transform", "template", "open", "edit", "paste", "type", "submit", ...string[], "ruby", "python", "python3", "perl", "php", "node", "lua", "r", "groovy", "scala", "swift", "go", "rust", "java", "clojure", "elixir", "erlang", "ocaml", "osascript", "deno", "kotlin", "julia", "dart", "haskell", "csharp"]; export type ToolType = typeof VALID_TOOLS[number];