import * as pulumi from "@pulumi/pulumi"; export declare function getIncidentSubStatus(args: GetIncidentSubStatusArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIncidentSubStatus. */ export interface GetIncidentSubStatusArgs { /** * Filter by date range using 'lt' and 'gt'. */ assignedAt?: { [key: string]: string; }; incidentId: string; subStatusId?: string; } /** * A collection of values returned by getIncidentSubStatus. */ export interface GetIncidentSubStatusResult { /** * Filter by date range using 'lt' and 'gt'. */ readonly assignedAt?: { [key: string]: string; }; /** * The ID of this resource. */ readonly id: string; readonly incidentId: string; readonly subStatusId: string; } export declare function getIncidentSubStatusOutput(args: GetIncidentSubStatusOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIncidentSubStatus. */ export interface GetIncidentSubStatusOutputArgs { /** * Filter by date range using 'lt' and 'gt'. */ assignedAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; incidentId: pulumi.Input; subStatusId?: pulumi.Input; } //# sourceMappingURL=getIncidentSubStatus.d.ts.map