import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
export interface IVeltCommentDialogComposerActionButtonProps extends IVeltWireframeCommonProps {
    type?: 'userMentions' | 'autocomplete' | 'file' | 'audio' | 'video' | 'screen' | 'submit' | 'attachments' | 'format';
    hotkey?: string;
}
declare const VeltCommentDialogComposerActionButton: React.FC<IVeltCommentDialogComposerActionButtonProps>;
export default VeltCommentDialogComposerActionButton;
