import * as pulumi from "@pulumi/pulumi";
export declare function getIncidentType(args: GetIncidentTypeArgs, opts?: pulumi.InvokeOptions): Promise<GetIncidentTypeResult>;
/**
 * A collection of arguments for invoking getIncidentType.
 */
export interface GetIncidentTypeArgs {
    displayName: string;
}
/**
 * A collection of values returned by getIncidentType.
 */
export interface GetIncidentTypeResult {
    readonly description: string;
    readonly displayName: string;
    readonly enabled: boolean;
    readonly id: string;
    readonly name: string;
    readonly parentType: string;
    readonly type: string;
}
export declare function getIncidentTypeOutput(args: GetIncidentTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIncidentTypeResult>;
/**
 * A collection of arguments for invoking getIncidentType.
 */
export interface GetIncidentTypeOutputArgs {
    displayName: pulumi.Input<string>;
}
