import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltCommentDialogSuggestionBodyWireframeProps } from './VeltCommentDialogSuggestionBodyWireframe/VeltCommentDialogSuggestionBodyWireframe';
import { IVeltCommentDialogSuggestionHeaderWireframe } from './VeltCommentDialogSuggestionHeaderWireframe/VeltCommentDialogSuggestionHeaderWireframe';
import { IVeltCommentDialogSuggestionFooterWireframe } from './VeltCommentDialogSuggestionFooterWireframe/VeltCommentDialogSuggestionFooterWireframe';
import { IVeltCommentDialogSuggestionActionsWireframe } from './VeltCommentDialogSuggestionActionsWireframe/VeltCommentDialogSuggestionActionsWireframe';
import { IVeltCommentDialogSuggestionBannerWireframe } from './VeltCommentDialogSuggestionBannerWireframe/VeltCommentDialogSuggestionBannerWireframe';
export interface IVeltCommentDialogSuggestionWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogSuggestionWireframe extends React.FC<IVeltCommentDialogSuggestionWireframeProps> {
    Body: React.FC<IVeltCommentDialogSuggestionBodyWireframeProps>;
    Header: IVeltCommentDialogSuggestionHeaderWireframe;
    Footer: IVeltCommentDialogSuggestionFooterWireframe;
    Actions: IVeltCommentDialogSuggestionActionsWireframe;
    Banner: IVeltCommentDialogSuggestionBannerWireframe;
}
declare const VeltCommentDialogSuggestionWireframe: IVeltCommentDialogSuggestionWireframe;
export default VeltCommentDialogSuggestionWireframe;
