import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertEntityType } from "./alert-entity-type.js"; import { AlertSettings } from "./alert-settings.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type AlertSettingsResponse = { config?: AlertSettings | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; enabled?: boolean | undefined; entityId?: string | undefined; entityType?: AlertEntityType | undefined; environmentId?: string | undefined; id?: string | undefined; parentEntityId?: string | undefined; parentEntityType?: string | undefined; status?: Status | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const AlertSettingsResponse$inboundSchema: z.ZodMiniType; export declare function alertSettingsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alert-settings-response.d.ts.map