interface DashboardProps { title?: string; subtitle?: string; /** * Skip the built-in login gate. Use when the library is embedded under a * host that already authenticates the user (e.g. a reverse proxy that * injects credentials, or a server-side proxy route that adds basic-auth * downstream). */ skipAuth?: boolean; /** * Override the base URL for API calls. Defaults to "" (same origin). * Use when embedding behind a proxy — e.g. "/api/infrastructure/code-server". */ baseUrl?: string; } export declare function Dashboard({ title, subtitle, skipAuth, baseUrl, }: DashboardProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Dashboard.d.ts.map