@veltdev/react
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
19 lines (18 loc) • 1.51 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltCommentDialogSuggestionBodyWireframeProps } from './VeltCommentDialogSuggestionBodyWireframe/VeltCommentDialogSuggestionBodyWireframe';
import { IVeltCommentDialogSuggestionHeaderWireframe } from './VeltCommentDialogSuggestionHeaderWireframe/VeltCommentDialogSuggestionHeaderWireframe';
import { IVeltCommentDialogSuggestionFooterWireframe } from './VeltCommentDialogSuggestionFooterWireframe/VeltCommentDialogSuggestionFooterWireframe';
import { IVeltCommentDialogSuggestionActionsWireframe } from './VeltCommentDialogSuggestionActionsWireframe/VeltCommentDialogSuggestionActionsWireframe';
import { IVeltCommentDialogSuggestionBannerWireframe } from './VeltCommentDialogSuggestionBannerWireframe/VeltCommentDialogSuggestionBannerWireframe';
export interface IVeltCommentDialogSuggestionWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogSuggestionWireframe extends React.FC<IVeltCommentDialogSuggestionWireframeProps> {
Body: React.FC<IVeltCommentDialogSuggestionBodyWireframeProps>;
Header: IVeltCommentDialogSuggestionHeaderWireframe;
Footer: IVeltCommentDialogSuggestionFooterWireframe;
Actions: IVeltCommentDialogSuggestionActionsWireframe;
Banner: IVeltCommentDialogSuggestionBannerWireframe;
}
declare const VeltCommentDialogSuggestionWireframe: IVeltCommentDialogSuggestionWireframe;
export default VeltCommentDialogSuggestionWireframe;