import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltCommentsSidebarCloseButtonProps } from './VeltCommentsSidebarCloseButton/VeltCommentsSidebarCloseButton'; import { IVeltCommentsSidebarEmptyPlaceholderProps } from './VeltCommentsSidebarEmptyPlaceholder/VeltCommentsSidebarEmptyPlaceholder'; import { IVeltCommentsSidebarFilter } from './VeltCommentsSidebarFilter/VeltCommentsSidebarFilter'; import { IVeltCommentsSidebarFilterButtonProps } from './VeltCommentsSidebarFilterButton/VeltCommentsSidebarFilterButton'; import { IVeltCommentsSidebarHeaderProps } from './VeltCommentsSidebarHeader/VeltCommentsSidebarHeader'; import { IVeltCommentsSidebarList } from './VeltCommentsSidebarList/VeltCommentsSidebarList'; import { IVeltCommentsSidebarLocationFilterDropdown } from './VeltCommentsSidebarLocationFilterDropdown/VeltCommentsSidebarLocationFilterDropdown'; import { IVeltCommentsSidebarDocumentFilterDropdownWireframe } from './VeltCommentsSidebarDocumentFilterDropdownWireframe/VeltCommentsSidebarDocumentFilterDropdownWireframe'; import { IVeltCommentsSidebarMinimalActionsDropdownWireframe } from './VeltCommentsSidebarMinimalActionsDropdownWireframe/VeltCommentsSidebarMinimalActionsDropdownWireframe'; import { IVeltCommentsSidebarMinimalFilterDropdown } from './VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdown'; import { IVeltCommentsSidebarPageModeComposerProps } from './VeltCommentsSidebarPageModeComposer/VeltCommentsSidebarPageModeComposer'; import { IVeltCommentsSidebarPanelProps } from './VeltCommentsSidebarPanel/VeltCommentsSidebarPanel'; import { IVeltCommentsSidebarSearchProps } from './VeltCommentsSidebarSearch/VeltCommentsSidebarSearch'; import { IVeltCommentsSidebarSkeletonProps } from './VeltCommentsSidebarSkeleton/VeltCommentsSidebarSkeleton'; import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltCommentsSidebarStatus'; import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe'; import { IVeltCommentsSidebarActionButtonProps } from './VeltCommentsSidebarActionButton/VeltCommentsSidebarActionButton'; import { IVeltCommentsSidebarFocusedThread } from './VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread'; import { IVeltCommentsSidebarFullscreenButton } from './VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton'; export interface IVeltCommentsSidebarWireframeProps extends IVeltWireframeCommonProps { } declare const VeltCommentsSidebarWireframe: React.FC & { CloseButton: React.FC; EmptyPlaceholder: React.FC; Filter: IVeltCommentsSidebarFilter; Header: React.FC; List: IVeltCommentsSidebarList; PageModeComposer: React.FC; Search: React.FC; Status: IVeltCommentsSidebarStatus; FilterButton: React.FC; Skeleton: React.FC; Panel: React.FC; MinimalFilterDropdown: IVeltCommentsSidebarMinimalFilterDropdown; LocationFilterDropdown: IVeltCommentsSidebarLocationFilterDropdown; DocumentFilterDropdown: IVeltCommentsSidebarDocumentFilterDropdownWireframe; MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe; ResetFilterButton: React.FC; ActionButton: React.FC; FocusedThread: IVeltCommentsSidebarFocusedThread; FullscreenButton: IVeltCommentsSidebarFullscreenButton; }; export default VeltCommentsSidebarWireframe;