import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 */
export declare function getSensorAlertsProfiles(args?: GetSensorAlertsProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetSensorAlertsProfilesResult>;
/**
 * A collection of arguments for invoking getSensorAlertsProfiles.
 */
export interface GetSensorAlertsProfilesArgs {
    /**
     * id path parameter.
     */
    id?: string;
    /**
     * networkId path parameter. Network ID
     */
    networkId?: string;
}
/**
 * A collection of values returned by getSensorAlertsProfiles.
 */
export interface GetSensorAlertsProfilesResult {
    /**
     * id path parameter.
     */
    readonly id?: string;
    readonly item: outputs.networks.GetSensorAlertsProfilesItem;
    /**
     * Array of ResponseSensorGetNetworkSensorAlertsProfiles
     */
    readonly items: outputs.networks.GetSensorAlertsProfilesItem[];
    /**
     * networkId path parameter. Network ID
     */
    readonly networkId?: string;
}
/**
 * ## Example Usage
 */
export declare function getSensorAlertsProfilesOutput(args?: GetSensorAlertsProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSensorAlertsProfilesResult>;
/**
 * A collection of arguments for invoking getSensorAlertsProfiles.
 */
export interface GetSensorAlertsProfilesOutputArgs {
    /**
     * id path parameter.
     */
    id?: pulumi.Input<string>;
    /**
     * networkId path parameter. Network ID
     */
    networkId?: pulumi.Input<string>;
}
