import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs for the RegexMatches activity. */ export interface RegexMatchesInputs { text: string; pattern: string; ignoreCase?: boolean; multiline?: boolean; } /** Defines outputs for the RegexMatches activity. */ export interface RegexMatchesOutputs { /** @description Whether the regular expression pattern found a match. */ result: boolean; } export declare class RegexMatches implements IActivityHandler { static readonly action = "gcx:wf:core::RegexMatches"; static readonly suite = "gcx:wf:builtin"; execute(inputs: RegexMatchesInputs): RegexMatchesOutputs; }