import type { Webflow } from "webflow-api"; import { type WebflowInputValue } from "../lib.js"; type SiteInput = WebflowInputValue & { siteId: string; }; type CollectionInput = WebflowInputValue & { collectionId: string; }; type FieldInput = CollectionInput & { fieldId: string; }; /** Lists CMS collections in one Webflow site. */ export declare const listWebflowCollections: import("..").WebflowDefinedAction, Webflow.CollectionList>; /** Retrieves one Webflow CMS collection and its fields. */ export declare const getWebflowCollection: import("..").WebflowDefinedAction, Webflow.Collection>; /** Creates a Webflow CMS collection with an initial field schema. */ export declare const createWebflowCollection: import("..").WebflowDefinedAction, Webflow.Collection>; /** Permanently deletes a Webflow CMS collection. */ export declare const deleteWebflowCollection: import("..").WebflowDefinedAction, void>; /** Adds a field to a Webflow CMS collection. */ export declare const createWebflowCollectionField: import("..").WebflowDefinedAction, Webflow.FieldCreate>; /** Updates the mutable settings of a Webflow collection field. */ export declare const updateWebflowCollectionField: import("..").WebflowDefinedAction, Webflow.Field>; /** Permanently deletes a field from a Webflow CMS collection. */ export declare const deleteWebflowCollectionField: import("..").WebflowDefinedAction, void>; export {}; //# sourceMappingURL=collections.d.ts.map