import { FunctionRegistryInfo } from "./transform.mjs"; import { z } from "zod"; //#region src/cli/commands/function/list.d.ts declare const listFunctionRegistriesOptionsSchema: z.ZodObject<{ workspaceId: z.ZodOptional; profile: z.ZodOptional; order: z.ZodOptional>; limit: z.ZodOptional>; }, z.core.$strip>; export type ListFunctionRegistriesOptions = z.input; /** * List function registries in a workspace with optional pagination. * @param options - Function registry listing options * @returns List of function registries */ export declare function listFunctionRegistries(options: ListFunctionRegistriesOptions): Promise; //#endregion