export declare function setupHtmlPath(): string; export interface SetupHtmlOptions { /** * When set, render a prominent "Authenticate now" button at the top of * setup.html pointing at this URL. Used by the OAuth loopback flow to * avoid printing the jumbo URL to the terminal (where it gets mangled). */ pendingAuth?: { url: string; account?: string; warnings?: { unverifiedApp: "always" | "maybe"; }; }; } export declare function writeSetupHtml(options?: SetupHtmlOptions): string;