import { z } from 'zod'; /** * Base Pagination Input Schema * Common pagination parameters used across list endpoints */ export declare const PaginationInputSchema: z.ZodObject<{ _page: z.ZodOptional; _limit: z.ZodOptional; _sortBy: z.ZodOptional; _order: z.ZodOptional; }, z.core.$strip>; /** * Select/Expand Input Schema * Common parameters for controlling response data shape */ export declare const SelectExpandInputSchema: z.ZodObject<{ _expand: z.ZodOptional; _select: z.ZodOptional>; }, z.core.$strip>; /** * Combined Pagination with Select/Expand Schema * Full query parameter schema for list endpoints */ export declare const ListQueryInputSchema: z.ZodObject<{ _page: z.ZodOptional; _limit: z.ZodOptional; _sortBy: z.ZodOptional; _order: z.ZodOptional; _expand: z.ZodOptional; _select: z.ZodOptional>; }, z.core.$strip>; /** * Flexible Output Schema * Used for API responses with dynamic/unknown structure */ export declare const FlexibleOutputSchema: z.ZodObject<{}, z.core.$loose>; export type PaginationInput = z.infer; export type SelectExpandInput = z.infer; export type ListQueryInput = z.infer;