import { type WebflowInputValue } from "../lib.js"; import type { WebflowCurrentOperations } from "../current-api-types.js"; type OperationId = keyof WebflowCurrentOperations; type Query = WebflowCurrentOperations[TId]["query"]; type Body = WebflowCurrentOperations[TId]["body"]; type SiteInput = WebflowInputValue & Body> & { siteId: string; }; type CollectionInput = WebflowInputValue> & { collectionId: string; }; type CommentInput = WebflowInputValue> & { commentThreadId: string; siteId: string; }; type FontInput = WebflowInputValue & Body> & { fontId: string; siteId: string; }; /** Lists Google tags configured for one Webflow site. */ export declare const listWebflowGoogleTags: import("..").WebflowDefinedAction, import("..").WebflowGoogleTags>; /** Adds or updates Google tags without removing unreferenced tags. */ export declare const upsertWebflowGoogleTags: import("..").WebflowDefinedAction, import("..").WebflowGoogleTags>; /** Removes every Google tag configured for one Webflow site. */ export declare const deleteAllWebflowGoogleTags: import("..").WebflowDefinedAction, void>; /** Removes one Google tag from a Webflow site. */ export declare const deleteWebflowGoogleTag: import("..").WebflowDefinedAction; /** Retrieves daily Webflow Analyze traffic metrics. */ export declare const getWebflowAnalyzeTrafficReport: import("..").WebflowDefinedAction, import("..").WebflowAnalyzeTrafficReport>; /** Retrieves the most visited pages from Webflow Analyze. */ export declare const getWebflowAnalyzeTopPagesReport: import("..").WebflowDefinedAction, import("..").WebflowAnalyzeTopPagesReport>; /** Retrieves ranked dimension values from Webflow Analyze. */ export declare const getWebflowAnalyzeTopDimensionsReport: import("..").WebflowDefinedAction, import("..").WebflowAnalyzeTopDimensionsReport>; /** Retrieves the most frequent tracked events from Webflow Analyze. */ export declare const getWebflowAnalyzeTopEventsReport: import("..").WebflowDefinedAction, import("..").WebflowAnalyzeTopEventsReport>; /** Retrieves time-on-page metrics from Webflow Analyze. */ export declare const getWebflowAnalyzeTimeOnPageReport: import("..").WebflowDefinedAction, import("..").WebflowAnalyzeTimeOnPageReport>; /** Updates Webflow collection metadata and field groups. */ export declare const updateWebflowCollection: import("..").WebflowDefinedAction, import("..").WebflowCollection>; /** Resolves or reopens a Webflow design-review comment thread. */ export declare const resolveWebflowCommentThread: import("..").WebflowDefinedAction, import("webflow-api/api").CommentThread>; /** Adds a reply to a Webflow design-review comment thread. */ export declare const createWebflowCommentReply: import("..").WebflowDefinedAction, import("..").WebflowCommentReply>; /** Lists custom fonts registered for one Webflow site. */ export declare const listWebflowCustomFonts: import("..").WebflowDefinedAction, import("..").WebflowCustomFontList>; /** Creates upload credentials for a custom Webflow font. */ export declare const createWebflowCustomFont: import("..").WebflowDefinedAction, import("..").WebflowCustomFontUploadResult>; /** Retrieves one custom font registered for a Webflow site. */ export declare const getWebflowCustomFont: import("..").WebflowDefinedAction, import("..").WebflowCustomFontResult>; /** Updates custom-font metadata for a Webflow site. */ export declare const updateWebflowCustomFont: import("..").WebflowDefinedAction, import("..").WebflowCustomFontResult>; /** Deletes one custom font from a Webflow site. */ export declare const deleteWebflowCustomFont: import("..").WebflowDefinedAction, void>; /** Creates upload credentials for replacing a custom Webflow font file. */ export declare const replaceWebflowCustomFontFile: import("..").WebflowDefinedAction, import("..").WebflowCustomFontUploadResult>; /** Creates upload credentials for up to 25 custom Webflow fonts. */ export declare const createWebflowCustomFonts: import("..").WebflowDefinedAction, import("..").WebflowCustomFontBatchCreateResult>; /** Deletes up to 100 custom fonts from a Webflow site. */ export declare const deleteWebflowCustomFonts: import("..").WebflowDefinedAction, import("..").WebflowCustomFontBatchDeleteResult>; export {}; //# sourceMappingURL=current-api.d.ts.map