import React from 'react';
import { IVeltNotificationsPanelContentListItemAvatarWireframe } from './VeltNotificationsPanelContentListItemAvatarWireframe/VeltNotificationsPanelContentListItemAvatarWireframe';
import { IVeltNotificationsPanelContentListItemBodyWireframe } from './VeltNotificationsPanelContentListItemBodyWireframe/VeltNotificationsPanelContentListItemBodyWireframe';
import { IVeltNotificationsPanelContentListItemFileNameWireframe } from './VeltNotificationsPanelContentListItemFileNameWireframe/VeltNotificationsPanelContentListItemFileNameWireframe';
import { IVeltNotificationsPanelContentListItemHeadlineWireframe } from './VeltNotificationsPanelContentListItemHeadlineWireframe/VeltNotificationsPanelContentListItemHeadlineWireframe';
import { IVeltNotificationsPanelContentListItemTimeWireframe } from './VeltNotificationsPanelContentListItemTimeWireframe/VeltNotificationsPanelContentListItemTimeWireframe';
import { IVeltNotificationsPanelContentListItemUnreadWireframe } from './VeltNotificationsPanelContentListItemUnreadWireframe/VeltNotificationsPanelContentListItemUnreadWireframe';
import { IVeltWireframeCommonProps } from '../../../../../constants';
export interface IVeltNotificationsPanelContentListItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentListItemWireframe extends React.FC<IVeltNotificationsPanelContentListItemWireframeProps> {
    Avatar: IVeltNotificationsPanelContentListItemAvatarWireframe;
    Body: IVeltNotificationsPanelContentListItemBodyWireframe;
    FileName: IVeltNotificationsPanelContentListItemFileNameWireframe;
    Headline: IVeltNotificationsPanelContentListItemHeadlineWireframe;
    Time: IVeltNotificationsPanelContentListItemTimeWireframe;
    Unread: IVeltNotificationsPanelContentListItemUnreadWireframe;
}
declare const VeltNotificationsPanelContentListItemWireframe: IVeltNotificationsPanelContentListItemWireframe;
export default VeltNotificationsPanelContentListItemWireframe;
