@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.
14 lines (13 loc) • 768 B
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltPresenceAvatarListWireframe } from './VeltPresenceAvatarListWireframe/VeltPresenceAvatarListWireframe';
import { IVeltPresenceAvatarRemainingCountWireframe } from './VeltPresenceAvatarRemainingCountWireframe/VeltPresenceAvatarRemainingCountWireframe';
export interface IVeltPresenceWireframeProps extends IVeltWireframeCommonProps {
variant?: string;
}
export interface IVeltPresenceWireframe extends React.FC<IVeltPresenceWireframeProps> {
AvatarList: IVeltPresenceAvatarListWireframe;
AvatarRemainingCount: IVeltPresenceAvatarRemainingCountWireframe;
}
declare const VeltPresenceWireframe: IVeltPresenceWireframe;
export default VeltPresenceWireframe;