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