import { type ScaffoldContext, type ScaffoldOptions } from '../types.js'; export interface ConvexOptions extends ScaffoldOptions { skipConvex?: boolean; /** Commander's `--no-auth` negation. */ auth?: boolean; } /** * Provisions the Convex backend and, with auth, wires up the redirect targets. * * The first step is `required`: everything after it talks to a deployment that * would not exist. */ export declare function initializeConvex(ctx: ScaffoldContext): Promise;