/** Vite plugin for deploying TanStack Start applications to Zephyr */ import type { Plugin } from 'vite'; /** * Plugin options for TanStack Start Zephyr deployment All configuration is handled * automatically by ZephyrEngine via package.json and git info */ export interface TanStackStartZephyrOptions { /** * Optional output directory override Defaults to 'dist' relative to project root * (TanStack Start default) */ outputDir?: string; /** * Server entry file path for SSR. * * This should be a path **relative to the TanStack Start output directory** (usually * `dist/`). For example: `server/index.js`. * * Defaults to `server/index.js`. */ entrypoint?: string; } /** * Main Vite plugin for TanStack Start Zephyr deployment * * Configuration is automatically detected from: * * - Package.json (app name, version) * - Git info (org, project, branch) * - Zephyr auth (via ze login) */ export declare function withZephyr(options?: TanStackStartZephyrOptions): Plugin; /** @deprecated Please use `withZephyr` instead. */ export declare const withZephyrTanstackStart: typeof withZephyr;