import { z } from 'zod/v4'; export declare const LANGUAGE_INPUT_SCHEMA: z.ZodObject<{ locale: z.ZodString; customLanguageName: z.ZodOptional; }, z.core.$strip>; export type LanguageInput = z.infer; export declare const PROJECT_WITH_EXTERNAL_INTEGRATIONS_SCHEMA: z.ZodObject<{ id: z.ZodGUID; externalId: z.ZodNullable; workspaceId: z.ZodGUID; description: z.ZodString; name: z.ZodString; baseContentLanguageId: z.ZodNullable; status: z.ZodEnum<{ readonly DRAFT: "DRAFT"; readonly ACTIVE: "ACTIVE"; }>; createdAt: z.ZodISODateTime; updatedAt: z.ZodNullable; deletedAt: z.ZodNullable; externalIntegrations: z.ZodArray; projectId: z.ZodGUID; externalId: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>; export type ProjectWithExternalIntegrations = z.infer; export declare const GET_PROJECTS_REQUEST_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; }, z.core.$strip>; export declare const GET_PROJECTS_REQUEST_QUERY_SCHEMA: z.ZodObject<{ limit: z.ZodDefault>; before: z.ZodOptional; after: z.ZodOptional; }, z.core.$strip>; export declare const GET_PROJECTS_RESPONSE_SCHEMA: z.ZodObject<{ data: z.ZodArray; workspaceId: z.ZodGUID; description: z.ZodString; name: z.ZodString; baseContentLanguageId: z.ZodNullable; status: z.ZodEnum<{ readonly DRAFT: "DRAFT"; readonly ACTIVE: "ACTIVE"; }>; createdAt: z.ZodISODateTime; updatedAt: z.ZodNullable; deletedAt: z.ZodNullable; }, z.core.$strip>>; meta: z.ZodObject<{ count: z.ZodNumber; cursor: z.ZodOptional; hasMore: z.ZodBoolean; }, z.core.$strip>; }, z.core.$strip>; export declare const GET_WORKSPACE_PROJECT_REQUEST_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; projectId: z.ZodGUID; }, z.core.$strip>; export declare const GET_PROJECT_REQUEST_PARAMS_SCHEMA: z.ZodObject<{ projectId: z.ZodGUID; }, z.core.$strip>; export declare const GET_PROJECT_RESPONSE_SCHEMA: z.ZodObject<{ data: z.ZodObject<{ id: z.ZodGUID; externalId: z.ZodNullable; workspaceId: z.ZodGUID; description: z.ZodString; name: z.ZodString; baseContentLanguageId: z.ZodNullable; status: z.ZodEnum<{ readonly DRAFT: "DRAFT"; readonly ACTIVE: "ACTIVE"; }>; createdAt: z.ZodISODateTime; updatedAt: z.ZodNullable; deletedAt: z.ZodNullable; externalIntegrations: z.ZodArray; projectId: z.ZodGUID; externalId: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>; export declare const POST_CREATE_PROJECT_BODY_SCHEMA: z.ZodObject<{ name: z.ZodString; baseLanguage: z.ZodObject<{ locale: z.ZodString; customLanguageName: z.ZodOptional; }, z.core.$strip>; targetLanguages: z.ZodArray; }, z.core.$strip>>; externalIntegration: z.ZodOptional>; type: z.ZodEnum<{ readonly SHOPIFY: "SHOPIFY"; readonly GIT: "GIT"; }>; }, z.core.$strip>>; }, z.core.$strip>; export declare const POST_CREATE_PROJECT_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; }, z.core.$strip>; export declare const POST_CREATE_PROJECT_RESPONSE_SCHEMA: z.ZodObject<{ data: z.ZodObject<{ id: z.ZodGUID; externalId: z.ZodNullable; workspaceId: z.ZodGUID; description: z.ZodString; name: z.ZodString; baseContentLanguageId: z.ZodNullable; status: z.ZodEnum<{ readonly DRAFT: "DRAFT"; readonly ACTIVE: "ACTIVE"; }>; createdAt: z.ZodISODateTime; updatedAt: z.ZodNullable; deletedAt: z.ZodNullable; targetLanguages: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>; export declare const DELETE_PROJECT_REQUEST_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; projectId: z.ZodGUID; }, z.core.$strip>; export declare const GET_PROJECTS_BY_USER_REQUEST_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; userId: z.ZodGUID; }, z.core.$strip>; export declare const GET_PROJECTS_BY_USER_REQUEST_QUERY_SCHEMA: z.ZodObject<{ limit: z.ZodDefault>; before: z.ZodOptional; after: z.ZodOptional; }, z.core.$strip>; export declare const GET_PROJECTS_BY_USER_RESPONSE_SCHEMA: z.ZodObject<{ data: z.ZodArray; workspaceId: z.ZodGUID; description: z.ZodString; name: z.ZodString; baseContentLanguageId: z.ZodNullable; status: z.ZodEnum<{ readonly DRAFT: "DRAFT"; readonly ACTIVE: "ACTIVE"; }>; createdAt: z.ZodISODateTime; updatedAt: z.ZodNullable; deletedAt: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>>; meta: z.ZodObject<{ count: z.ZodNumber; cursor: z.ZodOptional; hasMore: z.ZodBoolean; }, z.core.$strip>; }, z.core.$strip>; export type GetProjectsByUserParams = z.infer; export type GetProjectsByUserQuery = z.infer; export type GetProjectsByUserResponse = z.infer; export type GetProjectsParams = z.infer; export type GetProjectsQuery = z.infer; export type GetProjectsResponse = z.infer; export type GetWorkspaceProjectParams = z.infer; export type GetProjectParams = z.infer; export type GetProjectResponse = z.infer; export type PostCreateProjectParams = z.infer; export type PostCreateProjectBody = z.infer; export type PostCreateProjectResponse = z.infer; export type DeleteProjectParams = z.infer; export declare const PUT_UPDATE_PROJECT_REQUEST_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; projectId: z.ZodGUID; }, z.core.$strip>; export type PutUpdateProjectParams = z.infer; export declare const PUT_UPDATE_PROJECT_BODY_SCHEMA: z.ZodObject<{ name: z.ZodString; description: z.ZodString; }, z.core.$strip>; export type PutUpdateProjectBody = z.infer; export declare const POST_CREATE_LANGUAGES_IN_PROJECT_BODY_SCHEMA: z.ZodArray; }, z.core.$strip>>; export type PostCreateLanguagesInProjectBody = z.infer; export declare const PATCH_PROJECT_BODY_SCHEMA: z.ZodObject<{ name: z.ZodOptional; description: z.ZodOptional; baseLanguage: z.ZodOptional; }, z.core.$strip>>; targetLanguages: z.ZodOptional; }, z.core.$strip>>>; status: z.ZodOptional>; externalIntegration: z.ZodOptional>; type: z.ZodEnum<{ readonly SHOPIFY: "SHOPIFY"; readonly GIT: "GIT"; }>; }, z.core.$strip>>; }, z.core.$strip>; export type PatchProjectBody = z.infer; export declare const PATCH_PROJECT_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; projectId: z.ZodGUID; }, z.core.$strip>; export type PatchProjectParams = z.infer; export declare const POST_CREATE_LANGUAGES_IN_PROJECT_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; projectId: z.ZodGUID; }, z.core.$strip>; export type PostCreateLanguagesInProjectParams = z.infer; export declare const POST_CREATE_LANGUAGES_IN_PROJECT_RESPONSE_SCHEMA: z.ZodObject<{ data: z.ZodNullable; }, z.core.$strip>>>; }, z.core.$strip>; export type PostCreateLanguagesInProjectResponse = z.infer; export declare const GET_TARGET_LANGUAGE_COUNT_IN_PROJECT_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; projectId: z.ZodGUID; }, z.core.$strip>; export type GetTargetLanguageCountInProjectParams = z.infer; export declare const GET_TARGET_LANGUAGE_COUNT_IN_PROJECT_COUNT_RESPONSE_SCHEMA: z.ZodObject<{ data: z.ZodObject<{ count: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; export type GetTargetLanguageCountInProjectResponse = z.infer; export declare const GET_REVIEWERS_FOR_TRANSLATION_JOB_REQUEST_PARAMS_SCHEMA: z.ZodObject<{ workspaceId: z.ZodGUID; projectId: z.ZodGUID; jobId: z.ZodGUID; }, z.core.$strip>; export type GetReviewersForTranslationJobParams = z.infer; export declare const GET_REVIEWERS_FOR_TRANSLATION_JOB_QUERY_PARAMS_SCHEMA: z.ZodObject<{ targetLanguageIds: z.ZodPreprocess>; }, z.core.$strip>; export type GetReviewersForTranslationJobQuery = z.infer; export declare const GET_REVIEWERS_FOR_TRANSLATION_JOB_RESPONSE_SCHEMA: z.ZodObject<{ data: z.ZodArray>; }, z.core.$strip>; export type GetReviewersForTranslationJobResponse = z.infer; export declare const POST_CREATE_PROJECT_CONTENT_LANGUAGES_INCLUDE_ID_BODY_SCHEMA: z.ZodArray; }, z.core.$strip>>; export type PostCreateContentLanguagesIncludeIdBody = z.infer;