@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.
17 lines (16 loc) • 1.34 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
import { IVeltCommentDialogSuggestionAgentWireframe } from './VeltCommentDialogSuggestionAgentWireframe/VeltCommentDialogSuggestionAgentWireframe';
import { IVeltCommentDialogSuggestionAuthorWireframe } from './VeltCommentDialogSuggestionAuthorWireframe/VeltCommentDialogSuggestionAuthorWireframe';
import { IVeltCommentDialogSuggestionTimestampWireframeProps } from './VeltCommentDialogSuggestionTimestampWireframe/VeltCommentDialogSuggestionTimestampWireframe';
import { IVeltCommentDialogSuggestionMenuWireframe } from './VeltCommentDialogSuggestionMenuWireframe/VeltCommentDialogSuggestionMenuWireframe';
export interface IVeltCommentDialogSuggestionHeaderWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogSuggestionHeaderWireframe extends React.FC<IVeltCommentDialogSuggestionHeaderWireframeProps> {
Agent: IVeltCommentDialogSuggestionAgentWireframe;
Author: IVeltCommentDialogSuggestionAuthorWireframe;
Timestamp: React.FC<IVeltCommentDialogSuggestionTimestampWireframeProps>;
Menu: IVeltCommentDialogSuggestionMenuWireframe;
}
declare const VeltCommentDialogSuggestionHeaderWireframe: IVeltCommentDialogSuggestionHeaderWireframe;
export default VeltCommentDialogSuggestionHeaderWireframe;