import React from 'react'; import { IVeltPersistentCommentModeCloseButtonWireframeProps } from './VeltPersistentCommentModeCloseButtonWireframe/VeltPersistentCommentModeCloseButtonWireframe'; import { IVeltPersistentCommentModeLabelWireframe } from './VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelWireframe'; import { IVeltWireframeCommonProps } from '../../constants'; export interface IVeltPersistentCommentModeWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltPersistentCommentModeWireframe extends React.FC { CloseButton: React.FC; Label: IVeltPersistentCommentModeLabelWireframe; } declare const VeltPersistentCommentModeWireframe: IVeltPersistentCommentModeWireframe; export default VeltPersistentCommentModeWireframe;