import Actions from './Actions.vue';
import ActionsAudio from './ActionsAudio.vue';
import ActionsCopy from './ActionsCopy.vue';
import ActionsFeedback from './ActionsFeedback.vue';
import ActionsItem from './ActionsItem.vue';
export type { ActionsProps, ActionItem, ItemType, SubItemType, ActionsSemanticType, ActionsRef, } from './interface';
export type { ActionsCopyProps, ActionsFeedbackProps, ActionsItemProps, ActionsAudioProps, } from './preset-types';
export type { ActionsCopySemanticType, ActionsFeedbackSemanticType, ActionsItemSemanticType, ActionsAudioSemanticType, } from './constants';
export { FEEDBACK_VALUE, ACTIONS_ITEM_STATUS } from './constants';
type CompoundedActions = typeof Actions & {
    Copy: typeof ActionsCopy;
    Feedback: typeof ActionsFeedback;
    Item: typeof ActionsItem;
    Audio: typeof ActionsAudio;
};
declare const CompoundActions: CompoundedActions;
export default CompoundActions;
export { CompoundActions as Actions, ActionsCopy, ActionsFeedback, ActionsItem, ActionsAudio, };
