import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * This data source provides the list of Alarm Templates.
 *
 * An Alarm Template is a set of Alarm Rules that could be applied to one or more sites (while each site can only pick one Alarm Template), or to the whole org.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const alarmtemplates = junipermist.org.getAlarmtemplates({
 *     orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
 * });
 * ```
 */
export declare function getAlarmtemplates(args: GetAlarmtemplatesArgs, opts?: pulumi.InvokeOptions): Promise<GetAlarmtemplatesResult>;
/**
 * A collection of arguments for invoking getAlarmtemplates.
 */
export interface GetAlarmtemplatesArgs {
    orgId: string;
}
/**
 * A collection of values returned by getAlarmtemplates.
 */
export interface GetAlarmtemplatesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly orgAlarmtemplates: outputs.org.GetAlarmtemplatesOrgAlarmtemplate[];
    readonly orgId: string;
}
/**
 * This data source provides the list of Alarm Templates.
 *
 * An Alarm Template is a set of Alarm Rules that could be applied to one or more sites (while each site can only pick one Alarm Template), or to the whole org.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const alarmtemplates = junipermist.org.getAlarmtemplates({
 *     orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
 * });
 * ```
 */
export declare function getAlarmtemplatesOutput(args: GetAlarmtemplatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAlarmtemplatesResult>;
/**
 * A collection of arguments for invoking getAlarmtemplates.
 */
export interface GetAlarmtemplatesOutputArgs {
    orgId: pulumi.Input<string>;
}
