import { ContentArguments } from "../models/ScriptArguments.js"; import { CustomScript } from "./CustomScript.js"; export declare class FieldAction extends CustomScript { /** * Retrieve the arguments passed to the script * @returns */ static getArguments: () => ContentArguments | undefined; /** * Updates the field value * * @param fieldValue - The new value for the field. */ static update(fieldValue: any): void; }