import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
import { IVeltCommentDialogReplyAvatarsListItem } from './VeltCommentDialogReplyAvatarsListItem/VeltCommentDialogReplyAvatarsListItem';
export interface IVeltCommentDialogReplyAvatarsListProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogReplyAvatarsList extends React.FC<IVeltCommentDialogReplyAvatarsListProps> {
    Item: IVeltCommentDialogReplyAvatarsListItem;
}
declare const VeltCommentDialogReplyAvatarsList: IVeltCommentDialogReplyAvatarsList;
export default VeltCommentDialogReplyAvatarsList;
