@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.
14 lines • 600 B
TypeScript
import * as React from 'react';
import type { Opts } from 'linkifyjs';
interface LinkifyTextProps extends React.ComponentProps<'p'> {
text?: string;
pending?: boolean;
onReady?: () => void;
linkifyProps?: Opts;
skeletonContainerProps?: React.ComponentProps<'div'>;
skeletonLineProps?: React.ComponentProps<'span'>;
skeletonLinesClassNames?: string[];
}
declare const LinkifyText: React.NamedExoticComponent<Omit<LinkifyTextProps, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
export { LinkifyText, type LinkifyTextProps };
//# sourceMappingURL=linkify-text.d.ts.map