import { ContentArguments } from "../models/ScriptArguments.js"; import { CustomScript } from "./CustomScript.js"; export declare class ContentScript extends CustomScript { /** * Retrieve the arguments passed to the script * @returns */ static getArguments: () => ContentArguments | undefined; /** * Call this method to update the front matter * @param data */ static updateFrontMatter(data: { [fieldName: string]: any; }): void; }