import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
import { IVeltCommentDialogSuggestionBannerAvatarWireframe } from './VeltCommentDialogSuggestionBannerAvatarWireframe/VeltCommentDialogSuggestionBannerAvatarWireframe';
import { IVeltCommentDialogSuggestionBannerLabelWireframeProps } from './VeltCommentDialogSuggestionBannerLabelWireframe/VeltCommentDialogSuggestionBannerLabelWireframe';
import { IVeltCommentDialogSuggestionBannerSeparatorWireframeProps } from './VeltCommentDialogSuggestionBannerSeparatorWireframe/VeltCommentDialogSuggestionBannerSeparatorWireframe';
import { IVeltCommentDialogSuggestionBannerTimestampWireframeProps } from './VeltCommentDialogSuggestionBannerTimestampWireframe/VeltCommentDialogSuggestionBannerTimestampWireframe';
import { IVeltCommentDialogSuggestionBannerResolverUserNameWireframeProps } from './VeltCommentDialogSuggestionBannerResolverUserNameWireframe/VeltCommentDialogSuggestionBannerResolverUserNameWireframe';
export interface IVeltCommentDialogSuggestionBannerWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogSuggestionBannerWireframe extends React.FC<IVeltCommentDialogSuggestionBannerWireframeProps> {
    Avatar: IVeltCommentDialogSuggestionBannerAvatarWireframe;
    Label: React.FC<IVeltCommentDialogSuggestionBannerLabelWireframeProps>;
    Separator: React.FC<IVeltCommentDialogSuggestionBannerSeparatorWireframeProps>;
    Timestamp: React.FC<IVeltCommentDialogSuggestionBannerTimestampWireframeProps>;
    ResolverUserName: React.FC<IVeltCommentDialogSuggestionBannerResolverUserNameWireframeProps>;
}
declare const VeltCommentDialogSuggestionBannerWireframe: IVeltCommentDialogSuggestionBannerWireframe;
export default VeltCommentDialogSuggestionBannerWireframe;
