import type { Webflow } from "webflow-api"; import { type WebflowInputValue } from "../lib.js"; type SiteInput = WebflowInputValue & { siteId: string; }; type AssetInput = WebflowInputValue & { assetId: string; }; type AssetFolderInput = WebflowInputValue & { assetFolderId: string; }; type FormInput = WebflowInputValue & { formId: string; }; type SubmissionInput = WebflowInputValue & { formSubmissionId: string; }; type SiteFormInput = FormInput & { siteId: string; }; type SiteSubmissionInput = SubmissionInput & { siteId: string; }; /** Lists assets and optional variants from one Webflow site. */ export declare const listWebflowAssets: import("..").WebflowDefinedAction, Webflow.Assets>; /** Creates upload credentials for a new Webflow asset. */ export declare const createWebflowAsset: import("..").WebflowDefinedAction, Webflow.AssetUpload>; /** Retrieves one Webflow asset by ID. */ export declare const getWebflowAsset: import("..").WebflowDefinedAction, Webflow.Asset>; /** Updates the display name or folder placement of a Webflow asset. */ export declare const updateWebflowAsset: import("..").WebflowDefinedAction, Webflow.Asset>; /** Permanently deletes a Webflow asset. */ export declare const deleteWebflowAsset: import("..").WebflowDefinedAction, void>; /** Lists asset folders in one Webflow site. */ export declare const listWebflowAssetFolders: import("..").WebflowDefinedAction, Webflow.AssetFolderList>; /** Creates a folder in a Webflow site's asset library. */ export declare const createWebflowAssetFolder: import("..").WebflowDefinedAction, Webflow.AssetFolder>; /** Retrieves one Webflow asset folder. */ export declare const getWebflowAssetFolder: import("..").WebflowDefinedAction, Webflow.AssetFolder>; /** Lists forms defined in one Webflow site. */ export declare const listWebflowForms: import("..").WebflowDefinedAction, Webflow.FormList>; /** Retrieves the field schema for one Webflow form. */ export declare const getWebflowForm: import("..").WebflowDefinedAction, Webflow.Form>; /** Lists submissions for one Webflow form. */ export declare const listWebflowFormSubmissions: import("..").WebflowDefinedAction, Webflow.FormSubmissionList>; /** Lists submissions across every form in one Webflow site. */ export declare const listWebflowSiteFormSubmissions: import("..").WebflowDefinedAction, Webflow.FormSubmissionList>; /** Lists submissions for one form through its Webflow site route. */ export declare const listWebflowSiteFormSubmissionsForForm: import("..").WebflowDefinedAction, Webflow.FormSubmissionList>; /** Retrieves one Webflow form submission. */ export declare const getWebflowFormSubmission: import("..").WebflowDefinedAction, Webflow.FormSubmission>; /** Retrieves one form submission through its Webflow site route. */ export declare const getWebflowSiteFormSubmission: import("..").WebflowDefinedAction, Webflow.FormSubmission>; /** Updates editable metadata on one Webflow form submission. */ export declare const updateWebflowFormSubmission: import("..").WebflowDefinedAction, Webflow.FormSubmission>; /** Updates one form submission through its Webflow site route. */ export declare const updateWebflowSiteFormSubmission: import("..").WebflowDefinedAction, Webflow.FormSubmission>; /** Permanently deletes one Webflow form submission. */ export declare const deleteWebflowFormSubmission: import("..").WebflowDefinedAction, void>; /** Permanently deletes one form submission through its Webflow site route. */ export declare const deleteWebflowSiteFormSubmission: import("..").WebflowDefinedAction, void>; export {}; //# sourceMappingURL=assets-forms.d.ts.map