import React from 'react';
import { IVeltNotificationsPanelContentDocumentsListItemContentWireframe } from './VeltNotificationsPanelContentDocumentsListItemContentWireframe/VeltNotificationsPanelContentDocumentsListItemContentWireframe';
import { IVeltNotificationsPanelContentDocumentsListItemCountWireframe } from './VeltNotificationsPanelContentDocumentsListItemCountWireframe/VeltNotificationsPanelContentDocumentsListItemCountWireframe';
import { IVeltNotificationsPanelContentDocumentsListItemNameWireframe } from './VeltNotificationsPanelContentDocumentsListItemNameWireframe/VeltNotificationsPanelContentDocumentsListItemNameWireframe';
import { IVeltNotificationsPanelContentDocumentsListItemUnreadWireframe } from './VeltNotificationsPanelContentDocumentsListItemUnreadWireframe/VeltNotificationsPanelContentDocumentsListItemUnreadWireframe';
import { IVeltWireframeCommonProps } from '../../../../../../constants';
export interface IVeltNotificationsPanelContentDocumentsListItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentDocumentsListItemWireframe extends React.FC<IVeltNotificationsPanelContentDocumentsListItemWireframeProps> {
    Content: IVeltNotificationsPanelContentDocumentsListItemContentWireframe;
    Name: IVeltNotificationsPanelContentDocumentsListItemNameWireframe;
    Count: IVeltNotificationsPanelContentDocumentsListItemCountWireframe;
    Unread: IVeltNotificationsPanelContentDocumentsListItemUnreadWireframe;
}
declare const VeltNotificationsPanelContentDocumentsListItemWireframe: IVeltNotificationsPanelContentDocumentsListItemWireframe;
export default VeltNotificationsPanelContentDocumentsListItemWireframe;
