import { UseFormReturn } from "react-hook-form"; import * as z from "zod"; export declare const ReleasePipelineFormSchema: z.ZodObject<{ id: z.ZodString; description: z.ZodNullable>; }, "strip", z.ZodTypeAny, { id: string; description?: string | null | undefined; }, { id: string; description?: string | null | undefined; }>; export type UseReleasePipelineFormReturn = UseFormReturn, any, z.infer>; export declare const ReleaseMenu: ({ onRelease }: { onRelease?: () => void; }) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ReleaseMenu.d.ts.map