import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltInlineReactionsSectionListWireframeProps } from './VeltInlineReactionsSectionListWireframe/VeltInlineReactionsSectionListWireframe'; import { IVeltInlineReactionsSectionPanelWireframeProps } from './VeltInlineReactionsSectionPanelWireframe/VeltInlineReactionsSectionPanelWireframe'; import { IVeltInlineReactionsSectionToolContainerWireframeProps } from './VeltInlineReactionsSectionToolContainerWireframe/VeltInlineReactionsSectionToolContainerWireframe'; export interface IVeltInlineReactionsSectionWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltInlineReactionsSectionWireframe extends React.FC { List: React.FC; Panel: React.FC; ToolContainer: React.FC; } declare const VeltInlineReactionsSectionWireframe: IVeltInlineReactionsSectionWireframe; export default VeltInlineReactionsSectionWireframe;