import React from 'react';
export interface IVeltCommentDialogAttachmentButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    template?: any;
    componentMeta?: {
        componentName: string;
        variant?: string;
        suffix?: string;
    } | string;
    allowedFileTypes?: string[] | string;
    onClicked?: () => void;
    onSelectFiles?: (files: any) => void;
}
declare const VeltCommentDialogAttachmentButton: React.FC<IVeltCommentDialogAttachmentButtonProps>;
export default VeltCommentDialogAttachmentButton;
