import { FunctionRegistryInfo } from "./transform.mjs"; import { z } from "zod"; //#region src/cli/commands/function/get.d.ts declare const getFunctionRegistryOptionsSchema: z.ZodObject<{ workspaceId: z.ZodOptional; profile: z.ZodOptional; name: z.ZodString; }, z.core.$strip>; export type GetFunctionRegistryOptions = z.input; /** * Get a function registry by name. * @param options - Function registry get options * @returns Function registry info */ export declare function getFunctionRegistry(options: GetFunctionRegistryOptions): Promise; //#endregion