import React from "react"; import { ActionFunctionArgs, LoaderFunctionArgs } from "react-router-dom"; declare const HomeDashboardTab: ({ url }: { url: string; }) => React.ReactElement; export declare const loader: (args: LoaderFunctionArgs) => Promise<{ auth: false; notebookUuid?: undefined; token?: undefined; notebooks?: undefined; } | { auth: true; notebookUuid: string; token: string; notebooks: { uuid: string; appName: string; workspace: string; }[]; }>; export declare const action: (args: ActionFunctionArgs) => Promise; export default HomeDashboardTab;