@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.
13 lines (12 loc) • 869 B
TypeScript
import React from 'react';
import { IVeltCommentDialogPriorityDropdownContentWireframe } from '../../VeltCommentDialogPriorityDropdownContentWireframe/VeltCommentDialogPriorityDropdownContentWireframe';
import { IVeltCommentDialogPriorityDropdownTriggerWireframe } from '../../VeltCommentDialogPriorityDropdownTriggerWireframe/VeltCommentDialogPriorityDropdownTriggerWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltCommentDialogPriorityProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogPriority extends React.FC<IVeltCommentDialogPriorityProps> {
Content: IVeltCommentDialogPriorityDropdownContentWireframe;
Trigger: IVeltCommentDialogPriorityDropdownTriggerWireframe;
}
declare const VeltCommentDialogPriority: IVeltCommentDialogPriority;
export default VeltCommentDialogPriority;