import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export declare const Severity: { readonly Low: "low"; readonly Warning: "warning"; readonly High: "high"; }; export type Severity = ClosedEnum; export type GetApiV1PublicViolationsRequest = { page?: number | undefined; pageSize?: number | undefined; /** * Filter by server */ serverId?: string | undefined; severity?: Severity | undefined; acknowledged?: boolean | null | undefined; }; /** @internal */ export declare const Severity$outboundSchema: z.ZodMiniEnum; /** @internal */ export type GetApiV1PublicViolationsRequest$Outbound = { page: number; pageSize: number; serverId?: string | undefined; severity?: string | undefined; acknowledged?: boolean | null | undefined; }; /** @internal */ export declare const GetApiV1PublicViolationsRequest$outboundSchema: z.ZodMiniType; export declare function getApiV1PublicViolationsRequestToJSON(getApiV1PublicViolationsRequest: GetApiV1PublicViolationsRequest): string; //# sourceMappingURL=get-api-v1-public-violations.d.ts.map