UNPKG

@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.18 kB
import React from 'react'; import { IVeltTranscriptionPanelContainerWireframe } from '../VeltTranscriptionPanelContainerWireframe/VeltTranscriptionPanelContainerWireframe'; import { IVeltTranscriptionPanelWireframe } from '../VeltTranscriptionPanelWireframe/VeltTranscriptionPanelWireframe'; import { IVeltTranscriptionButtonWireframe } from '../VeltTranscriptionButtonWireframe/VeltTranscriptionButtonWireframe'; import { IVeltTranscriptionTooltipWireframe } from '../VeltTranscriptionTooltipWireframe/VeltTranscriptionTooltipWireframe'; import { IVeltWireframeCommonProps } from '../../../constants'; export interface IVeltTranscriptionFloatingModeWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltTranscriptionFloatingModeWireframe extends React.FC<IVeltTranscriptionFloatingModeWireframeProps> { Button: IVeltTranscriptionButtonWireframe; Tooltip: IVeltTranscriptionTooltipWireframe; PanelContainer: IVeltTranscriptionPanelContainerWireframe; Panel: IVeltTranscriptionPanelWireframe; } declare const VeltTranscriptionFloatingModeWireframe: IVeltTranscriptionFloatingModeWireframe; export default VeltTranscriptionFloatingModeWireframe;