13 lines
651 B
TypeScript
13 lines
651 B
TypeScript
import React from "react";
|
|
|
|
//#region src/components/chat/CopilotChatSuggestionPill.d.ts
|
|
interface CopilotChatSuggestionPillProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
/** Optional icon to render on the left side when not loading. */
|
|
icon?: React.ReactNode;
|
|
/** Whether the pill should display a loading spinner. */
|
|
isLoading?: boolean;
|
|
}
|
|
declare const CopilotChatSuggestionPill: React.ForwardRefExoticComponent<CopilotChatSuggestionPillProps & React.RefAttributes<HTMLButtonElement>>;
|
|
//#endregion
|
|
export { CopilotChatSuggestionPill, CopilotChatSuggestionPillProps };
|
|
//# sourceMappingURL=CopilotChatSuggestionPill.d.mts.map
|