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<IVeltInlineReactionsSectionWireframeProps> {
    List: React.FC<IVeltInlineReactionsSectionListWireframeProps>;
    Panel: React.FC<IVeltInlineReactionsSectionPanelWireframeProps>;
    ToolContainer: React.FC<IVeltInlineReactionsSectionToolContainerWireframeProps>;
}
declare const VeltInlineReactionsSectionWireframe: IVeltInlineReactionsSectionWireframe;
export default VeltInlineReactionsSectionWireframe;
