import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
import { IVeltCommentDialogSuggestionAgentWireframe } from './VeltCommentDialogSuggestionAgentWireframe/VeltCommentDialogSuggestionAgentWireframe';
import { IVeltCommentDialogSuggestionAuthorWireframe } from './VeltCommentDialogSuggestionAuthorWireframe/VeltCommentDialogSuggestionAuthorWireframe';
import { IVeltCommentDialogSuggestionTimestampWireframeProps } from './VeltCommentDialogSuggestionTimestampWireframe/VeltCommentDialogSuggestionTimestampWireframe';
import { IVeltCommentDialogSuggestionMenuWireframe } from './VeltCommentDialogSuggestionMenuWireframe/VeltCommentDialogSuggestionMenuWireframe';
export interface IVeltCommentDialogSuggestionHeaderWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogSuggestionHeaderWireframe extends React.FC<IVeltCommentDialogSuggestionHeaderWireframeProps> {
    Agent: IVeltCommentDialogSuggestionAgentWireframe;
    Author: IVeltCommentDialogSuggestionAuthorWireframe;
    Timestamp: React.FC<IVeltCommentDialogSuggestionTimestampWireframeProps>;
    Menu: IVeltCommentDialogSuggestionMenuWireframe;
}
declare const VeltCommentDialogSuggestionHeaderWireframe: IVeltCommentDialogSuggestionHeaderWireframe;
export default VeltCommentDialogSuggestionHeaderWireframe;
