import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertSettingsResponse } from "./alert-settings-response.js"; import { PaginationResponse } from "./pagination-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type ListAlertSettingsResponse = { items?: Array | undefined; pagination?: PaginationResponse | undefined; }; /** @internal */ export declare const ListAlertSettingsResponse$inboundSchema: z.ZodMiniType; export declare function listAlertSettingsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=list-alert-settings-response.d.ts.map