import * as z from "zod"; export type IncidentsV1NumberListRequest = { /** * Integer number of records to return */ pageSize?: number | undefined; /** * An record's ID. This endpoint will return a list of records after this ID in relation to the API response order. */ after?: string | undefined; /** * Filter for incidents in these statuses */ status?: Array | undefined; }; /** @internal */ export declare const IncidentsV1NumberListRequest$inboundSchema: z.ZodType; /** @internal */ export type IncidentsV1NumberListRequest$Outbound = { page_size: number; after?: string | undefined; status?: Array | undefined; }; /** @internal */ export declare const IncidentsV1NumberListRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IncidentsV1NumberListRequest$ { /** @deprecated use `IncidentsV1NumberListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentsV1NumberListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentsV1NumberListRequest$Outbound` instead. */ type Outbound = IncidentsV1NumberListRequest$Outbound; } //# sourceMappingURL=incidentsv1numberlist.d.ts.map