import * as React from "react"; import { AppRouterInstance } from "next/dist/shared/lib/app-router-context.shared-runtime"; import { UseFormReturn } from "react-hook-form"; export type Nullable = T | null; export type AtLeast = Partial & Pick; export type UseCustomHookResult = [ T, React.Dispatch> ]; export type InstillAiUserCookie = { cookieToken: string; }; export type GeneralUseFormReturn = UseFormReturn<{ [k: string]: any; }, any, { [k: string]: any; }>; export type GeneralRecord = Record; export type InstillAppEnv = "APP_ENV_CORE" | "APP_ENV_CLOUD"; export type GeneralAppPageProp = { router: AppRouterInstance; enableQuery: boolean; accessToken: Nullable; }; //# sourceMappingURL=general.d.ts.map