import React from 'react';
import { IVeltCommentDialogCustomAnnotationDropdownContentItemIconProps } from './VeltCommentDialogCustomAnnotationDropdownContentItemIcon/VeltCommentDialogCustomAnnotationDropdownContentItemIcon';
import { IVeltCommentDialogCustomAnnotationDropdownContentItemLabelProps } from './VeltCommentDialogCustomAnnotationDropdownContentItemLabel/VeltCommentDialogCustomAnnotationDropdownContentItemLabel';
import { IVeltWireframeCommonProps } from '../../../../../constants';
export interface IVeltCommentDialogCustomAnnotationDropdownContentItemProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogCustomAnnotationDropdownContentItem extends React.FC<IVeltCommentDialogCustomAnnotationDropdownContentItemProps> {
    Label: React.FC<IVeltCommentDialogCustomAnnotationDropdownContentItemLabelProps>;
    Icon: React.FC<IVeltCommentDialogCustomAnnotationDropdownContentItemIconProps>;
}
declare const VeltCommentDialogCustomAnnotationDropdownContentItem: IVeltCommentDialogCustomAnnotationDropdownContentItem;
export default VeltCommentDialogCustomAnnotationDropdownContentItem;
