/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { UnparsedObject } from "../../datadog-api-client-common/util"; /** * The name of the preset for the notification for the monitor. */ export declare type SyntheticsTestOptionsMonitorOptionsNotificationPresetName = typeof SHOW_ALL | typeof HIDE_ALL | typeof HIDE_QUERY | typeof HIDE_HANDLES | typeof HIDE_QUERY_AND_HANDLES | typeof SHOW_ONLY_SNAPSHOT | typeof HIDE_HANDLES_AND_FOOTER | UnparsedObject; export declare const SHOW_ALL = "show_all"; export declare const HIDE_ALL = "hide_all"; export declare const HIDE_QUERY = "hide_query"; export declare const HIDE_HANDLES = "hide_handles"; export declare const HIDE_QUERY_AND_HANDLES = "hide_query_and_handles"; export declare const SHOW_ONLY_SNAPSHOT = "show_only_snapshot"; export declare const HIDE_HANDLES_AND_FOOTER = "hide_handles_and_footer";