import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getIncidentRoles(args?: GetIncidentRolesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIncidentRoles. */ export interface GetIncidentRolesArgs { enabled?: boolean; name?: string; slug?: string; } /** * A collection of values returned by getIncidentRoles. */ export interface GetIncidentRolesResult { readonly enabled?: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly incidentRoles: outputs.GetIncidentRolesIncidentRole[]; readonly name?: string; readonly slug?: string; } export declare function getIncidentRolesOutput(args?: GetIncidentRolesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIncidentRoles. */ export interface GetIncidentRolesOutputArgs { enabled?: pulumi.Input; name?: pulumi.Input; slug?: pulumi.Input; } //# sourceMappingURL=getIncidentRoles.d.ts.map