@connectycube/chat-widget
Version:
A customizable React chat widget built on the ConnectyCube platform, enabling real-time messaging, calls, and user engagement in any web app.
9 lines • 428 B
TypeScript
import * as React from 'react';
interface PlaceholderTextProps extends React.ComponentProps<'div'> {
title?: string;
titles?: string[];
rowProps?: React.ComponentProps<'div'>;
}
declare const PlaceholderText: React.ForwardRefExoticComponent<Omit<PlaceholderTextProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { PlaceholderText, type PlaceholderTextProps };
//# sourceMappingURL=placeholder-text.d.ts.map