import React from 'react';
import { IVeltNotificationsPanelContentAllListItemContentWireframe } from './VeltNotificationsPanelContentAllListItemContentWireframe/VeltNotificationsPanelContentAllListItemContentWireframe';
import { IVeltNotificationsPanelContentAllListItemLabelWireframe } from './VeltNotificationsPanelContentAllListItemLabelWireframe/VeltNotificationsPanelContentAllListItemLabelWireframe';
import { IVeltWireframeCommonProps } from '../../../../../../constants';
export interface IVeltNotificationsPanelContentAllListItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentAllListItemWireframe extends React.FC<IVeltNotificationsPanelContentAllListItemWireframeProps> {
    Label: IVeltNotificationsPanelContentAllListItemLabelWireframe;
    Content: IVeltNotificationsPanelContentAllListItemContentWireframe;
}
declare const VeltNotificationsPanelContentAllListItemWireframe: IVeltNotificationsPanelContentAllListItemWireframe;
export default VeltNotificationsPanelContentAllListItemWireframe;
