import React from 'react';
import { IVeltCommentDialogCustomAnnotationDropdownContent } from './VeltCommentDialogCustomAnnotationDropdownContent/VeltCommentDialogCustomAnnotationDropdownContent';
import { IVeltCommentDialogCustomAnnotationDropdownTrigger } from './VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTrigger';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltCommentDialogCustomAnnotationDropdownProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogCustomAnnotationDropdown extends React.FC<IVeltCommentDialogCustomAnnotationDropdownProps> {
    Content: IVeltCommentDialogCustomAnnotationDropdownContent;
    Trigger: IVeltCommentDialogCustomAnnotationDropdownTrigger;
}
declare const VeltCommentDialogCustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
export default VeltCommentDialogCustomAnnotationDropdown;
