import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage */ export declare function getIncidentType(args?: GetIncidentTypeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIncidentType. */ export interface GetIncidentTypeArgs { color?: string; /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; name?: string; slug?: string; } /** * A collection of values returned by getIncidentType. */ export interface GetIncidentTypeResult { readonly color: string; /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; /** * The ID of this resource. */ readonly id: string; readonly name: string; readonly slug: string; } /** * ## Example Usage */ export declare function getIncidentTypeOutput(args?: GetIncidentTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIncidentType. */ export interface GetIncidentTypeOutputArgs { color?: pulumi.Input; /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; name?: pulumi.Input; slug?: pulumi.Input; } //# sourceMappingURL=getIncidentType.d.ts.map