aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
19 lines • 834 B
TypeScript
import React from "react";
export interface CollaborationParticipant {
id: string;
name: string;
presence?: "active" | "idle" | "offline";
color?: string;
cursorLabel?: string;
}
export interface MultiUserGlassEditorProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
users?: CollaborationParticipant[];
className?: string;
header?: string;
lastUpdatedAt?: Date | string;
onContentChange?: (value: string) => void;
textareaClassName?: string;
}
export declare function MultiUserGlassEditor({ users, className, header, lastUpdatedAt, onContentChange, value, defaultValue, readOnly, textareaClassName, ...textareaProps }: MultiUserGlassEditorProps): import("react/jsx-runtime").JSX.Element;
export default MultiUserGlassEditor;
//# sourceMappingURL=MultiUserGlassEditor.d.ts.map