import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltInlineCommentsSectionCommentCountWireframeProps } from './VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe';
import { IVeltInlineCommentsSectionComposerContainerWireframeProps } from './VeltInlineCommentsSectionComposerContainerWireframe/VeltInlineCommentsSectionComposerContainerWireframe';
import { IVeltInlineCommentsSectionListWireframeProps } from './VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe';
import { IVeltInlineCommentsSectionPanelWireframeProps } from './VeltInlineCommentsSectionPanelWireframe/VeltInlineCommentsSectionPanelWireframe';
import { IVeltInlineCommentsSectionSkeletonWireframeProps } from './VeltInlineCommentsSectionSkeletonWireframe/VeltInlineCommentsSectionSkeletonWireframe';
import { IVeltInlineCommentsSectionSortingDropdownWireframe } from './VeltInlineCommentsSectionSortingDropdownWireframe/VeltInlineCommentsSectionSortingDropdownWireframe';
export interface IVeltInlineCommentsSectionWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltInlineCommentsSectionWireframe extends React.FC<IVeltInlineCommentsSectionWireframeProps> {
    CommentCount: React.FC<IVeltInlineCommentsSectionCommentCountWireframeProps>;
    ComposerContainer: React.FC<IVeltInlineCommentsSectionComposerContainerWireframeProps>;
    List: React.FC<IVeltInlineCommentsSectionListWireframeProps>;
    Panel: React.FC<IVeltInlineCommentsSectionPanelWireframeProps>;
    Skeleton: React.FC<IVeltInlineCommentsSectionSkeletonWireframeProps>;
    SortingDropdown: IVeltInlineCommentsSectionSortingDropdownWireframe;
}
declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe;
export default VeltInlineCommentsSectionWireframe;
