import { Trigger } from './Trigger.mjs'; /** * * * Represents a launcher that triggers an action in a form template based on a specific trigger * event. */ export declare class Launcher { /** * * The name of the launcher. */ name: string; /** * * The trigger event that activates this launcher. */ triggerer: Trigger; /** * * Whether the current field value should be passed when the launcher is triggered. */ shouldPassValue: boolean; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): Launcher; }