export type SetupOptions = { cwd?: string; silent?: boolean; }; export type SetupResult = { success: boolean; message?: string; error?: Error; }; /** * Install workshop dependencies in the current directory. * Must be run from within a workshop directory (containing package.json). * * Automatically detects and uses the package manager based on how epicshop was * invoked (e.g., pnpm dlx epicshop setup uses pnpm, bunx epicshop setup uses bun). * This is handled by pkgmgr, which detects the runtime package manager. */ export declare function setup(options?: SetupOptions): Promise;