import { Paths as Paths$1 } from 'env-paths'; interface Paths { /** nodejs binary */ node?: string; /** js script path */ script?: string; /** package.json */ pkg?: string; /** Package root */ root?: string; /** env paths */ env: Paths$1; /** directory where all commands reside in */ commands?: string; } interface Path { commands: (...parts: any[]) => string; app: (...parts: any[]) => string; data: (...parts: any[]) => string; config: (...parts: any[]) => string; cache: (...parts: any[]) => string; log: (...parts: any[]) => string; tmp: (...parts: any[]) => string; } export type { Path, Paths };