export interface Action {
    /**
     * The type of the event.
     * This helps determine how the event should be applied to the state.
     */
    type: string;
    /**
     * Whether the action can be structure cloned.
     * If true, then the action should not be passed across message ports without special handling.
     */
    uncopiable?: boolean;
}
//# sourceMappingURL=Action.d.ts.map