import { z } from 'zod/v4'; export declare const PROJECT_ID_REQUEST_PARAM_SCHEMA: z.ZodObject<{ projectId: z.ZodString; }, z.core.$strip>; export type ProjectIdRequestParam = z.infer; export declare const EXPERT_AUTHORIZATION_HEADER_SCHEMA: z.ZodUnion; }, z.core.$strip>, z.ZodObject<{ authorization: z.ZodString; 'content-type': z.ZodLiteral<"application/json">; }, z.core.$strip>]>; export type ExpertAuthorizationHeader = z.infer; export declare const EXPERT_PAGE_HEADER_SCHEMA: z.ZodObject<{ 'x-pagination-total-count': z.ZodCoercedNumber; 'x-pagination-page-count': z.ZodCoercedNumber; 'x-pagination-limit': z.ZodCoercedNumber; 'x-pagination-page': z.ZodCoercedNumber; 'x-response-too-big': z.ZodOptional>>; }, z.core.$strip>; export type ExpertPageHeader = z.infer; export declare const EXPERT_MANDATORY_PAGINATION_SCHEMA: z.ZodObject<{ page: z.ZodDefault>; }, z.core.$strip>; export type ExpertMandatoryPagination = z.infer;