@cossistant/next
Version:
Next.js-ready SDK for building AI-powered support/chat widgets. Hooks + primitives, WS-driven, TypeScript-first. Next.js-ready, Tailwind optional.
18 lines • 515 B
TypeScript
//#region ../react/src/support-config.d.ts
type SupportConfigProps = {
defaultMessages?: DefaultMessage[];
quickOptions?: string[];
};
/**
* Component exposed by Cossistant allowing you to change the support widget default messages and quick response whenever rendered.
*/
declare const SupportConfig: {
({
defaultMessages,
quickOptions
}: SupportConfigProps): null;
displayName: string;
};
//#endregion
export { SupportConfig, SupportConfigProps };
//# sourceMappingURL=support-config2.d.ts.map