/* 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 auth from "../auth.js";
import type * as clips from "../clips.js";
import type * as constants from "../constants.js";
import type * as crons from "../crons.js";
import type * as http from "../http.js";
import type * as internalUpdateClip from "../internalUpdateClip.js";
import type * as radio from "../radio.js";
import type * as rooms from "../rooms.js";
import type * as runGenerate from "../runGenerate.js";

/**
 * A utility for referencing Convex functions in your app's API.
 *
 * Usage:
 * ```js
 * const myFunctionReference = api.myModule.myFunction;
 * ```
 */
declare const fullApi: ApiFromModules<{
  auth: typeof auth;
  clips: typeof clips;
  constants: typeof constants;
  crons: typeof crons;
  http: typeof http;
  internalUpdateClip: typeof internalUpdateClip;
  radio: typeof radio;
  rooms: typeof rooms;
  runGenerate: typeof runGenerate;
}>;
export declare const api: FilterApi<
  typeof fullApi,
  FunctionReference<any, "public">
>;
export declare const internal: FilterApi<
  typeof fullApi,
  FunctionReference<any, "internal">
>;
