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