import type { Webflow } from "webflow-api"; import { type WebflowInputValue } from "../lib.js"; type CollectionInput = WebflowInputValue & { collectionId: string; }; type ItemInput = CollectionInput & { itemId: string; }; type CreateItemRequest = Omit & { fieldData?: Webflow.CollectionItemPostSingle["fieldData"]; items?: Webflow.CollectionItemPostSingle[]; skipInvalidFiles?: boolean; }; type CreateItemLiveRequest = Omit & { fieldData?: Webflow.CollectionItem["fieldData"]; items?: Webflow.CollectionItem[]; skipInvalidFiles?: boolean; }; type UpdateItemRequest = Webflow.CollectionItemPatchSingle & { skipInvalidFiles?: boolean; }; type PublishItemsInput = CollectionInput<{ itemIds?: string[]; items?: Array<{ cmsLocaleIds?: string[]; id: string; }>; }>; /** Lists staged CMS items with locale, name, slug, sort, and pagination filters. */ export declare const listWebflowCollectionItems: import("..").WebflowDefinedAction, Webflow.CollectionItemList>; /** Lists the currently published version of CMS items. */ export declare const listLiveWebflowCollectionItems: import("..").WebflowDefinedAction, Webflow.CollectionItemList>; /** Retrieves one staged Webflow CMS item. */ export declare const getWebflowCollectionItem: import("..").WebflowDefinedAction, Webflow.CollectionItem>; /** Retrieves the currently published version of one Webflow CMS item. */ export declare const getLiveWebflowCollectionItem: import("..").WebflowDefinedAction, Webflow.CollectionItem>; /** Creates one or more staged Webflow CMS items. */ export declare const createWebflowCollectionItem: import("..").WebflowDefinedAction, Webflow.CollectionItem>; /** Creates and immediately publishes one or more Webflow CMS items. */ export declare const createLiveWebflowCollectionItem: import("..").WebflowDefinedAction, Webflow.CollectionItem>; /** Creates localized variants for multiple Webflow CMS items. */ export declare const createLocalizedWebflowCollectionItems: import("..").WebflowDefinedAction, Webflow.BulkCollectionItem>; /** Updates one staged Webflow CMS item. */ export declare const updateWebflowCollectionItem: import("..").WebflowDefinedAction, Webflow.CollectionItem>; /** Updates one published Webflow CMS item immediately. */ export declare const updateLiveWebflowCollectionItem: import("..").WebflowDefinedAction, Webflow.CollectionItem>; /** Updates up to 100 staged Webflow CMS items. */ export declare const updateWebflowCollectionItems: import("..").WebflowDefinedAction, Webflow.collections.ItemsUpdateItemsResponse>; /** Updates and publishes multiple Webflow CMS items. */ export declare const updateLiveWebflowCollectionItems: import("..").WebflowDefinedAction, Webflow.CollectionItemListNoPagination>; /** Publishes or unpublishes selected staged Webflow CMS items. */ export declare const publishWebflowCollectionItems: import("..").WebflowDefinedAction; /** Deletes one staged Webflow CMS item. */ export declare const deleteWebflowCollectionItem: import("..").WebflowDefinedAction, void>; /** Deletes one published Webflow CMS item immediately. */ export declare const deleteLiveWebflowCollectionItem: import("..").WebflowDefinedAction, void>; /** Deletes multiple staged Webflow CMS items. */ export declare const deleteWebflowCollectionItems: import("..").WebflowDefinedAction, void>; /** Deletes multiple published Webflow CMS items immediately. */ export declare const deleteLiveWebflowCollectionItems: import("..").WebflowDefinedAction, void>; export {}; //# sourceMappingURL=items.d.ts.map