import { BehaviorAction } from '../types'; interface MessageActionValue { type?: string; content?: string; } interface MessageActionOptions { defaultType?: string; types: string[]; library: string; component: string; } export declare const messageBehaviorAction: BehaviorAction; export {};