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'; import { IVeltInlineCommentsSectionFilterDropdownWireframe } from './VeltInlineCommentsSectionFilterDropdownWireframe/VeltInlineCommentsSectionFilterDropdownWireframe'; export interface IVeltInlineCommentsSectionWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltInlineCommentsSectionWireframe extends React.FC { CommentCount: React.FC; ComposerContainer: React.FC; List: React.FC; Panel: React.FC; Skeleton: React.FC; SortingDropdown: IVeltInlineCommentsSectionSortingDropdownWireframe; FilterDropdown: IVeltInlineCommentsSectionFilterDropdownWireframe; } declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe; export default VeltInlineCommentsSectionWireframe;