import { ActionBehavior } from '../actionbehavior'; /** * Calls an exposed function on a context * * @zbehavior * @zicon function * @zgroup Actions */ export declare class CallFunction extends ActionBehavior { /** * The function and arguments to call * @zprop */ function: () => any; /** @zui * @zprop */ perform(): void; }