import { ActionBehavior } from '../actionbehavior'; /** * Outputs a message to the console log. * * @zbehavior * @zicon terminal * @zgroup Actions */ export declare class ConsoleLog extends ActionBehavior { /** * The text to log * @zprop */ text: string; /** * If true, the event name will be logged in addition to the text * @zprop * @zdefault true */ includeEventName: boolean; /** @zprop */ perform(): void; }