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