/** * `supen bootstrap` — First-time Supen setup. * * The first prompt chooses between: * - gateway mode: configure remote access and stop * - local daemon mode: configure host state and start the GHCR Docker image */ export interface BootstrapOptions { hubUrl?: string; token?: string; yes?: boolean; } export declare function bootstrap(options?: BootstrapOptions): Promise;