import { ActionBehavior } from '../actionbehavior'; /** * Calls emit on an event that's a prop of this ZComponent * * @zbehavior * @zicon function * @zgroup Actions */ export declare class EmitComponentPropEvent extends ActionBehavior { /** * The event to emit * @zprop * @ztype function-emit-component-prop-event */ eventToEmit: () => any; /** * @zui * @zprop */ perform(): void; }