import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getIncidentTypes(args?: GetIncidentTypesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIncidentTypes. */ export interface GetIncidentTypesArgs { name?: string; slug?: string; } /** * A collection of values returned by getIncidentTypes. */ export interface GetIncidentTypesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly incidentTypes: outputs.GetIncidentTypesIncidentType[]; readonly name?: string; readonly slug?: string; } export declare function getIncidentTypesOutput(args?: GetIncidentTypesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIncidentTypes. */ export interface GetIncidentTypesOutputArgs { name?: pulumi.Input; slug?: pulumi.Input; } //# sourceMappingURL=getIncidentTypes.d.ts.map