import { z } from "zod"; export declare const issueWorkProductTypeSchema: z.ZodEnum<["preview_url", "runtime_service", "pull_request", "branch", "commit", "artifact", "document"]>; export declare const issueWorkProductStatusSchema: z.ZodEnum<["active", "ready_for_review", "approved", "changes_requested", "merged", "closed", "failed", "archived", "draft"]>; export declare const issueWorkProductReviewStateSchema: z.ZodEnum<["none", "needs_board_review", "approved", "changes_requested"]>; export declare const createIssueWorkProductSchema: z.ZodObject<{ projectId: z.ZodNullable>; executionWorkspaceId: z.ZodNullable>; runtimeServiceId: z.ZodNullable>; type: z.ZodEnum<["preview_url", "runtime_service", "pull_request", "branch", "commit", "artifact", "document"]>; provider: z.ZodString; externalId: z.ZodNullable>; title: z.ZodString; url: z.ZodNullable>; status: z.ZodDefault>; reviewState: z.ZodDefault>>; isPrimary: z.ZodDefault>; healthStatus: z.ZodDefault>>; summary: z.ZodNullable>; metadata: z.ZodNullable>>; createdByRunId: z.ZodNullable>; }, "strip", z.ZodTypeAny, { status: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft"; type: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document"; provider: string; title: string; isPrimary: boolean; reviewState: "approved" | "none" | "changes_requested" | "needs_board_review"; healthStatus: "unknown" | "healthy" | "unhealthy"; url?: string | null | undefined; metadata?: Record | null | undefined; projectId?: string | null | undefined; executionWorkspaceId?: string | null | undefined; runtimeServiceId?: string | null | undefined; externalId?: string | null | undefined; summary?: string | null | undefined; createdByRunId?: string | null | undefined; }, { type: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document"; provider: string; title: string; status?: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft" | undefined; url?: string | null | undefined; metadata?: Record | null | undefined; projectId?: string | null | undefined; isPrimary?: boolean | undefined; executionWorkspaceId?: string | null | undefined; runtimeServiceId?: string | null | undefined; externalId?: string | null | undefined; reviewState?: "approved" | "none" | "changes_requested" | "needs_board_review" | undefined; healthStatus?: "unknown" | "healthy" | "unhealthy" | undefined; summary?: string | null | undefined; createdByRunId?: string | null | undefined; }>; export type CreateIssueWorkProduct = z.infer; export declare const updateIssueWorkProductSchema: z.ZodObject<{ projectId: z.ZodOptional>>; executionWorkspaceId: z.ZodOptional>>; runtimeServiceId: z.ZodOptional>>; type: z.ZodOptional>; provider: z.ZodOptional; externalId: z.ZodOptional>>; title: z.ZodOptional; url: z.ZodOptional>>; status: z.ZodOptional>>; reviewState: z.ZodOptional>>>; isPrimary: z.ZodOptional>>; healthStatus: z.ZodOptional>>>; summary: z.ZodOptional>>; metadata: z.ZodOptional>>>; createdByRunId: z.ZodOptional>>; }, "strip", z.ZodTypeAny, { status?: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft" | undefined; type?: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document" | undefined; provider?: string | undefined; url?: string | null | undefined; metadata?: Record | null | undefined; projectId?: string | null | undefined; title?: string | undefined; isPrimary?: boolean | undefined; executionWorkspaceId?: string | null | undefined; runtimeServiceId?: string | null | undefined; externalId?: string | null | undefined; reviewState?: "approved" | "none" | "changes_requested" | "needs_board_review" | undefined; healthStatus?: "unknown" | "healthy" | "unhealthy" | undefined; summary?: string | null | undefined; createdByRunId?: string | null | undefined; }, { status?: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft" | undefined; type?: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document" | undefined; provider?: string | undefined; url?: string | null | undefined; metadata?: Record | null | undefined; projectId?: string | null | undefined; title?: string | undefined; isPrimary?: boolean | undefined; executionWorkspaceId?: string | null | undefined; runtimeServiceId?: string | null | undefined; externalId?: string | null | undefined; reviewState?: "approved" | "none" | "changes_requested" | "needs_board_review" | undefined; healthStatus?: "unknown" | "healthy" | "unhealthy" | undefined; summary?: string | null | undefined; createdByRunId?: string | null | undefined; }>; export type UpdateIssueWorkProduct = z.infer; //# sourceMappingURL=work-product.d.ts.map