import * as pulumi from "@pulumi/pulumi"; /** * DEPRECATED: Please use `formField` data source instead. * * ## Example Usage */ export declare function getCustomField(args?: GetCustomFieldArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomField. */ export interface GetCustomFieldArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; enabled?: boolean; kind?: string; label?: string; slug?: string; } /** * A collection of values returned by getCustomField. */ export interface GetCustomFieldResult { /** * 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 label: string; readonly slug: string; } /** * DEPRECATED: Please use `formField` data source instead. * * ## Example Usage */ export declare function getCustomFieldOutput(args?: GetCustomFieldOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomField. */ export interface GetCustomFieldOutputArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; enabled?: pulumi.Input; kind?: pulumi.Input; label?: pulumi.Input; slug?: pulumi.Input; } //# sourceMappingURL=getCustomField.d.ts.map