import type { Webflow } from "webflow-api"; import { type WebflowInputValue } from "../lib.js"; type SiteInput = WebflowInputValue & { siteId: string; }; type PageInput = WebflowInputValue & { pageId: string; }; type CommentInput = SiteInput & { commentThreadId: string; }; /** Mutable request fields for applying registered scripts to a site or page. */ export type WebflowScriptApplyRequest = Pick; /** Lists comment threads on one Webflow site. */ export declare const listWebflowCommentThreads: import("..").WebflowDefinedAction, Webflow.CommentThreadList>; /** Retrieves one Webflow design-review comment thread. */ export declare const getWebflowCommentThread: import("..").WebflowDefinedAction, Webflow.CommentThread>; /** Lists replies in one Webflow design-review comment thread. */ export declare const listWebflowCommentReplies: import("..").WebflowDefinedAction, Webflow.CommentReplyList>; /** Lists JavaScript resources registered for a Webflow site. */ export declare const listWebflowRegisteredScripts: import("..").WebflowDefinedAction, Webflow.RegisteredScriptList>; /** Registers a versioned hosted JavaScript resource with a Webflow site. */ export declare const registerHostedWebflowScript: import("..").WebflowDefinedAction, Webflow.CustomCodeHostedResponse>; /** Registers an inline JavaScript resource with a Webflow site. */ export declare const registerInlineWebflowScript: import("..").WebflowDefinedAction, Webflow.CustomCodeInlineResponse>; /** Retrieves scripts currently applied to one Webflow site. */ export declare const getWebflowSiteCustomCode: import("..").WebflowDefinedAction, Webflow.ScriptApplyList>; /** Replaces scripts applied site-wide on one Webflow site. */ export declare const setWebflowSiteCustomCode: import("..").WebflowDefinedAction, Webflow.ScriptApplyList>; /** Removes every site-wide custom-code application from a Webflow site. */ export declare const deleteWebflowSiteCustomCode: import("..").WebflowDefinedAction, void>; /** Lists reusable custom-code blocks defined for a Webflow site. */ export declare const listWebflowCustomCodeBlocks: import("..").WebflowDefinedAction, Webflow.ListCustomCodeBlocks>; /** Retrieves scripts currently applied to one Webflow page. */ export declare const getWebflowPageCustomCode: import("..").WebflowDefinedAction, Webflow.ScriptApplyList>; /** Replaces scripts applied to one Webflow page. */ export declare const setWebflowPageCustomCode: import("..").WebflowDefinedAction, Webflow.ScriptApplyList>; /** Removes every custom-code application from one Webflow page. */ export declare const deleteWebflowPageCustomCode: import("..").WebflowDefinedAction, void>; export {}; //# sourceMappingURL=comments-code.d.ts.map