/* eslint-disable */
/**
 * Generated `api` utility.
 *
 * THIS CODE IS AUTOMATICALLY GENERATED.
 *
 * To regenerate, run `npx convex dev`.
 * @module
 */

import type {
  ApiFromModules,
  FilterApi,
  FunctionReference,
} from "convex/server";
import type * as assistant from "../assistant.js";
import type * as atoms from "../atoms.js";
import type * as auth from "../auth.js";
import type * as crons from "../crons.js";
import type * as http from "../http.js";
import type * as invites from "../invites.js";
import type * as messages from "../messages.js";
import type * as playback from "../playback.js";
import type * as presence from "../presence.js";
import type * as radioPlayback from "../radioPlayback.js";
import type * as radioRooms from "../radioRooms.js";
import type * as rooms from "../rooms.js";
import type * as spaces from "../spaces.js";
import type * as users from "../users.js";

/**
 * A utility for referencing Convex functions in your app's API.
 *
 * Usage:
 * ```js
 * const myFunctionReference = api.myModule.myFunction;
 * ```
 */
declare const fullApi: ApiFromModules<{
  assistant: typeof assistant;
  atoms: typeof atoms;
  auth: typeof auth;
  crons: typeof crons;
  http: typeof http;
  invites: typeof invites;
  messages: typeof messages;
  playback: typeof playback;
  presence: typeof presence;
  radioPlayback: typeof radioPlayback;
  radioRooms: typeof radioRooms;
  rooms: typeof rooms;
  spaces: typeof spaces;
  users: typeof users;
}>;
export declare const api: FilterApi<
  typeof fullApi,
  FunctionReference<any, "public">
>;
export declare const internal: FilterApi<
  typeof fullApi,
  FunctionReference<any, "internal">
>;
