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