/** sdocs' own install location — under npx this is the npx cache, not the project */ export declare function sdocsPackageRoot(): string; export { svelteDedupe } from '../server/svelte-toolchain.js'; export interface DevOptions { /** `--port`, overriding the config's. */ port?: number; /** `--open` / `--no-open`, overriding the config's. */ open?: boolean; } export declare function devCommand(opts?: DevOptions): Promise;